Describe Identity Provider
cognitoidentityprovider_describe_identity_provider | R Documentation |
Gets information about a specific IdP¶
Description¶
Gets information about a specific IdP.
Usage¶
Arguments¶
UserPoolId
[required] The user pool ID.
ProviderName
[required] The IdP name.
Value¶
A list with the following syntax:
list(
IdentityProvider = list(
UserPoolId = "string",
ProviderName = "string",
ProviderType = "SAML"|"Facebook"|"Google"|"LoginWithAmazon"|"SignInWithApple"|"OIDC",
ProviderDetails = list(
"string"
),
AttributeMapping = list(
"string"
),
IdpIdentifiers = list(
"string"
),
LastModifiedDate = as.POSIXct(
"2015-01-01"
),
CreationDate = as.POSIXct(
"2015-01-01"
)
)
)