CfnProfileMixinProps

class aws_cdk.mixins_preview.aws_route53profiles.mixins.CfnProfileMixinProps(*, name=None, tags=None)

Bases: object

Properties for CfnProfilePropsMixin.

Parameters:
  • name (Optional[str]) – Name of the Profile.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A list of the tag keys and values that you want to associate with the profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.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.mixins_preview.aws_route53profiles import mixins as route53profiles_mixins

cfn_profile_mixin_props = route53profiles_mixins.CfnProfileMixinProps(
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

name

Name of the Profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html#cfn-route53profiles-profile-name

tags

A list of the tag keys and values that you want to associate with the profile.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html#cfn-route53profiles-profile-tags