interface CfnServiceNetworkResourceAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.VpcLattice.CfnServiceNetworkResourceAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsvpclattice#CfnServiceNetworkResourceAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.vpclattice.CfnServiceNetworkResourceAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_vpclattice.CfnServiceNetworkResourceAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_vpclattice » 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 { aws_vpclattice as vpclattice } from '@aws-cdk/cfn-property-mixins';
const cfnServiceNetworkResourceAssociationMixinProps: vpclattice.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