UserPoolIdentityProviderReference
- class aws_cdk.aws_cognito.UserPoolIdentityProviderReference(*, provider_name, user_pool_id)
Bases:
object
A reference to a UserPoolIdentityProvider resource.
- Parameters:
provider_name (
str
) – The ProviderName of the UserPoolIdentityProvider resource.user_pool_id (
str
) – The UserPoolId of the UserPoolIdentityProvider resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_cognito as cognito user_pool_identity_provider_reference = cognito.UserPoolIdentityProviderReference( provider_name="providerName", user_pool_id="userPoolId" )
Attributes
- provider_name
The ProviderName of the UserPoolIdentityProvider resource.
- user_pool_id
The UserPoolId of the UserPoolIdentityProvider resource.