CfnUserPoolReplicaProps

class aws_cdk.aws_cognito.CfnUserPoolReplicaProps(*, region_name, user_pool_id, user_pool_tags_at_create=None)

Bases: object

Properties for defining a CfnUserPoolReplica.

Parameters:
  • region_name (str)

  • user_pool_id (str)

  • user_pool_tags_at_create (Optional[Mapping[str, str]])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolreplica.html

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

cfn_user_pool_replica_props = cognito.CfnUserPoolReplicaProps(
    region_name="regionName",
    user_pool_id="userPoolId",

    # the properties below are optional
    user_pool_tags_at_create={
        "user_pool_tags_at_create_key": "userPoolTagsAtCreate"
    }
)

Attributes

region_name

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolreplica.html#cfn-cognito-userpoolreplica-regionname

Type:

see

user_pool_id

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolreplica.html#cfn-cognito-userpoolreplica-userpoolid

Type:

see

user_pool_tags_at_create

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolreplica.html#cfn-cognito-userpoolreplica-userpooltagsatcreate

Type:

see