interface CfnProfileResourceAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53Profiles.Mixins.CfnProfileResourceAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53profiles/mixins#CfnProfileResourceAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53profiles.mixins.CfnProfileResourceAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_route53profiles.mixins.CfnProfileResourceAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53profiles » mixins » 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 { mixins as route53profiles_mixins } from '@aws-cdk/mixins-preview/aws-route53profiles';
const cfnProfileResourceAssociationMixinProps: route53profiles_mixins.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