CfnProfileProps

class aws_cdk.aws_route53profiles.CfnProfileProps(*, name, tags=None)

Bases: object

Properties for defining a CfnProfile.

Parameters:
  • name (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 import aws_route53profiles as route53profiles

cfn_profile_props = route53profiles.CfnProfileProps(
    name="name",

    # the properties below are optional
    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