interface CfnServiceNetworkResourceAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VpcLattice.Mixins.CfnServiceNetworkResourceAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvpclattice/mixins#CfnServiceNetworkResourceAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.vpclattice.mixins.CfnServiceNetworkResourceAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnServiceNetworkResourceAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_vpclattice » mixins » CfnServiceNetworkResourceAssociationMixinProps |
Properties for CfnServiceNetworkResourceAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as vpclattice_mixins } from '@aws-cdk/mixins-preview/aws-vpclattice';
const cfnServiceNetworkResourceAssociationMixinProps: vpclattice_mixins.CfnServiceNetworkResourceAssociationMixinProps = {
privateDnsEnabled: false,
resourceConfigurationId: 'resourceConfigurationId',
serviceNetworkId: 'serviceNetworkId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| private | boolean | IResolvable | Indicates if private DNS is enabled for the service network resource association. |
| resource | string | The ID of the resource configuration associated with the service network. |
| service | string | The ID of the service network associated with the resource configuration. |
| tags? | Cfn[] | A key-value pair to associate with a resource. |
privateDnsEnabled?
Type:
boolean | IResolvable
(optional)
Indicates if private DNS is enabled for the service network resource association.
resourceConfigurationId?
Type:
string
(optional)
The ID of the resource configuration associated with the service network.
serviceNetworkId?
Type:
string
(optional)
The ID of the service network associated with the resource configuration.
tags?
Type:
Cfn[]
(optional)
A key-value pair to associate with a resource.

.NET
Go
Java
Python
TypeScript