CfnProfileMixinProps
- class aws_cdk.mixins_preview.aws_route53profiles.mixins.CfnProfileMixinProps(*, name=None, tags=None)
Bases:
objectProperties 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:
- 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.
- tags
A list of the tag keys and values that you want to associate with the profile.