CfnProfileResourceAssociationMixinProps
- class aws_cdk.mixins_preview.aws_route53profiles.mixins.CfnProfileResourceAssociationMixinProps(*, name=None, profile_id=None, resource_arn=None, resource_properties=None)
Bases:
objectProperties for CfnProfileResourceAssociationPropsMixin.
- Parameters:
name (
Optional[str]) – Name of the Profile resource association.profile_id (
Optional[str]) – Profile ID of the Profile that the resources are associated with.resource_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the resource association.resource_properties (
Optional[str]) – If the DNS resource is a DNS Firewall rule group, this indicates the priority.
- 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_resource_association_mixin_props = route53profiles_mixins.CfnProfileResourceAssociationMixinProps( name="name", profile_id="profileId", resource_arn="resourceArn", resource_properties="resourceProperties" )
Attributes
- name
Name of the Profile resource association.
- profile_id
Profile ID of the Profile that the resources are associated with.
- resource_arn
The Amazon Resource Name (ARN) of the resource association.
- resource_properties
If the DNS resource is a DNS Firewall rule group, this indicates the priority.