List Application Providers
ssoadmin_list_application_providers | R Documentation |
Lists the application providers configured in the IAM Identity Center identity store¶
Description¶
Lists the application providers configured in the IAM Identity Center identity store.
Usage¶
ssoadmin_list_application_providers(MaxResults, NextToken)
Arguments¶
MaxResults |
Specifies the total number of results that you want included in
each response. If additional items exist beyond the number you specify,
the |
NextToken |
Specifies that you want to receive the next page of results.
Valid only if you received a |
Value¶
A list with the following syntax:
list(
ApplicationProviders = list(
list(
ApplicationProviderArn = "string",
DisplayData = list(
Description = "string",
DisplayName = "string",
IconUrl = "string"
),
FederationProtocol = "SAML"|"OAUTH",
ResourceServerConfig = list(
Scopes = list(
list(
DetailedTitle = "string",
LongDescription = "string"
)
)
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_application_providers(
MaxResults = 123,
NextToken = "string"
)