interface DnsOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VpcLattice.Mixins.CfnServiceNetworkVpcAssociationPropsMixin.DnsOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvpclattice/mixins#CfnServiceNetworkVpcAssociationPropsMixin_DnsOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.vpclattice.mixins.CfnServiceNetworkVpcAssociationPropsMixin.DnsOptionsProperty |
Python | aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnServiceNetworkVpcAssociationPropsMixin.DnsOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_vpclattice » mixins » CfnServiceNetworkVpcAssociationPropsMixin » DnsOptionsProperty |
The DNS configuration options.
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 dnsOptionsProperty: vpclattice_mixins.CfnServiceNetworkVpcAssociationPropsMixin.DnsOptionsProperty = {
privateDnsPreference: 'privateDnsPreference',
privateDnsSpecifiedDomains: ['privateDnsSpecifiedDomains'],
};
Properties
| Name | Type | Description |
|---|---|---|
| private | string | The preference for which private domains have a private hosted zone created for and associated with the specified VPC. |
| private | string[] | Indicates which of the private domains to create private hosted zones for and associate with the specified VPC. |
privateDnsPreference?
Type:
string
(optional)
The preference for which private domains have a private hosted zone created for and associated with the specified VPC.
Only supported when private DNS is enabled and when the VPC endpoint type is ServiceNetwork or Resource.
privateDnsSpecifiedDomains?
Type:
string[]
(optional)
Indicates which of the private domains to create private hosted zones for and associate with the specified VPC.
Only supported when private DNS is enabled and the private DNS preference is VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS or SPECIFIED_DOMAINS_ONLY .

.NET
Go
Java
Python
TypeScript