Describe Workspace Authentication
managedgrafana_describe_workspace_authentication | R Documentation |
Displays information about the authentication methods used in one Amazon Managed Grafana workspace¶
Description¶
Displays information about the authentication methods used in one Amazon Managed Grafana workspace.
Usage¶
Arguments¶
workspaceId
[required] The ID of the workspace to return authentication information about.
Value¶
A list with the following syntax:
list(
authentication = list(
awsSso = list(
ssoClientId = "string"
),
providers = list(
"AWS_SSO"|"SAML"
),
saml = list(
configuration = list(
allowedOrganizations = list(
"string"
),
assertionAttributes = list(
email = "string",
groups = "string",
login = "string",
name = "string",
org = "string",
role = "string"
),
idpMetadata = list(
url = "string",
xml = "string"
),
loginValidityDuration = 123,
roleValues = list(
admin = list(
"string"
),
editor = list(
"string"
)
)
),
status = "CONFIGURED"|"NOT_CONFIGURED"
)
)
)