List Identity Providers
workspacesweb_list_identity_providers | R Documentation |
Retrieves a list of identity providers for a specific web portal¶
Description¶
Retrieves a list of identity providers for a specific web portal.
Usage¶
workspacesweb_list_identity_providers(maxResults, nextToken, portalArn)
Arguments¶
maxResults |
The maximum number of results to be included in the next page. |
nextToken |
The pagination token used to retrieve the next page of results for this operation. |
portalArn |
[required] The ARN of the web portal. |
Value¶
A list with the following syntax:
list(
identityProviders = list(
list(
identityProviderArn = "string",
identityProviderName = "string",
identityProviderType = "SAML"|"Facebook"|"Google"|"LoginWithAmazon"|"SignInWithApple"|"OIDC"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_identity_providers(
maxResults = 123,
nextToken = "string",
portalArn = "string"
)