CfnProfileAssociationMixinProps
- class aws_cdk.mixins_preview.aws_route53profiles.mixins.CfnProfileAssociationMixinProps(*, arn=None, name=None, profile_id=None, resource_id=None, tags=None)
Bases:
objectProperties for CfnProfileAssociationPropsMixin.
- Parameters:
arn (
Optional[str]) – The Amazon Resource Name (ARN) of the profile association to a VPC.name (
Optional[str]) – Name of the Profile association.profile_id (
Optional[str]) – ID of the Profile. Update to this property requires update to theResourceIdproperty as well, because you can only associate one Profile per VPC. For more information, see Route 53 Profiles .resource_id (
Optional[str]) – The ID of the VPC.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.
- 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_association_mixin_props = route53profiles_mixins.CfnProfileAssociationMixinProps( arn="arn", name="name", profile_id="profileId", resource_id="resourceId", tags=[CfnTag( key="key", value="value" )] )
Attributes
- arn
The Amazon Resource Name (ARN) of the profile association to a VPC.
- name
Name of the Profile association.
- profile_id
ID of the Profile.
Update to this property requires update to the
ResourceIdproperty as well, because you can only associate one Profile per VPC. For more information, see Route 53 Profiles .
- resource_id
The ID of the VPC.
- tags
An array of key-value pairs to apply to this resource.