UserPoolRiskConfigurationAttachmentReference
- class aws_cdk.aws_cognito.UserPoolRiskConfigurationAttachmentReference(*, client_id, user_pool_id)
Bases:
object
A reference to a UserPoolRiskConfigurationAttachment resource.
- Parameters:
client_id (
str
) – The ClientId of the UserPoolRiskConfigurationAttachment resource.user_pool_id (
str
) – The UserPoolId of the UserPoolRiskConfigurationAttachment 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_risk_configuration_attachment_reference = cognito.UserPoolRiskConfigurationAttachmentReference( client_id="clientId", user_pool_id="userPoolId" )
Attributes
- client_id
The ClientId of the UserPoolRiskConfigurationAttachment resource.
- user_pool_id
The UserPoolId of the UserPoolRiskConfigurationAttachment resource.