List Identity Providers
| cognitoidentityprovider_list_identity_providers | R Documentation |
Lists information about all IdPs for a user pool¶
Description¶
Lists information about all IdPs for a user pool.
Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For this operation, you must use IAM credentials to authorize requests, and you must grant yourself the corresponding IAM permission in a policy.
Learn more
Usage¶
Arguments¶
UserPoolId[required] The user pool ID.
MaxResultsThe maximum number of IdPs to return.
NextTokenA pagination token.
Value¶
A list with the following syntax:
list(
Providers = list(
list(
ProviderName = "string",
ProviderType = "SAML"|"Facebook"|"Google"|"LoginWithAmazon"|"SignInWithApple"|"OIDC",
LastModifiedDate = as.POSIXct(
"2015-01-01"
),
CreationDate = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)