interface CfnServiceNetworkServiceAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VpcLattice.Mixins.CfnServiceNetworkServiceAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvpclattice/mixins#CfnServiceNetworkServiceAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.vpclattice.mixins.CfnServiceNetworkServiceAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnServiceNetworkServiceAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_vpclattice » mixins » CfnServiceNetworkServiceAssociationMixinProps |
Properties for CfnServiceNetworkServiceAssociationPropsMixin.
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 cfnServiceNetworkServiceAssociationMixinProps: vpclattice_mixins.CfnServiceNetworkServiceAssociationMixinProps = {
dnsEntry: {
domainName: 'domainName',
hostedZoneId: 'hostedZoneId',
},
serviceIdentifier: 'serviceIdentifier',
serviceNetworkIdentifier: 'serviceNetworkIdentifier',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| dns | IResolvable | Dns | The DNS information of the service. |
| service | string | The ID or ARN of the service. |
| service | string | The ID or ARN of the service network. |
| tags? | Cfn[] | The tags for the association. |
dnsEntry?
Type:
IResolvable | Dns
(optional)
The DNS information of the service.
serviceIdentifier?
Type:
string
(optional)
The ID or ARN of the service.
serviceNetworkIdentifier?
Type:
string
(optional)
The ID or ARN of the service network.
You must use an ARN if the resources are in different accounts.
tags?
Type:
Cfn[]
(optional)
The tags for the association.

.NET
Go
Java
Python
TypeScript