interface CfnServiceNetworkResourceAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.VpcLattice.CfnServiceNetworkResourceAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsvpclattice#CfnServiceNetworkResourceAssociationProps |
Java | software.amazon.awscdk.services.vpclattice.CfnServiceNetworkResourceAssociationProps |
Python | aws_cdk.aws_vpclattice.CfnServiceNetworkResourceAssociationProps |
TypeScript | aws-cdk-lib » aws_vpclattice » CfnServiceNetworkResourceAssociationProps |
Properties for defining a CfnServiceNetworkResourceAssociation.
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-lib';
const cfnServiceNetworkResourceAssociationProps: vpclattice.CfnServiceNetworkResourceAssociationProps = {
privateDnsEnabled: false,
resourceConfigurationId: 'resourceConfigurationId',
serviceNetworkId: 'serviceNetworkId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| private | boolean | IResolvable | |
| 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)
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