interface CfnProfileResourceAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53Profiles.CfnProfileResourceAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53profiles#CfnProfileResourceAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53profiles.CfnProfileResourceAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_route53profiles.CfnProfileResourceAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53profiles » CfnProfileResourceAssociationMixinProps |
Properties for CfnProfileResourceAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53profiles as route53profiles } from '@aws-cdk/cfn-property-mixins';
const cfnProfileResourceAssociationMixinProps: route53profiles.CfnProfileResourceAssociationMixinProps = {
name: 'name',
profileId: 'profileId',
resourceArn: 'resourceArn',
resourceProperties: 'resourceProperties',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Name of the Profile resource association. |
| profile | string | Profile ID of the Profile that the resources are associated with. |
| resource | string | The Amazon Resource Name (ARN) of the resource association. |
| resource | string | If the DNS resource is a DNS Firewall rule group, this indicates the priority. |
name?
Type:
string
(optional)
Name of the Profile resource association.
profileId?
Type:
string
(optional)
Profile ID of the Profile that the resources are associated with.
resourceArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the resource association.
resourceProperties?
Type:
string
(optional)
If the DNS resource is a DNS Firewall rule group, this indicates the priority.

.NET
Go
Java
Python
TypeScript