interface DnsEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VpcLattice.Mixins.CfnServiceNetworkServiceAssociationPropsMixin.DnsEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvpclattice/mixins#CfnServiceNetworkServiceAssociationPropsMixin_DnsEntryProperty |
Java | software.amazon.awscdk.mixins.preview.services.vpclattice.mixins.CfnServiceNetworkServiceAssociationPropsMixin.DnsEntryProperty |
Python | aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnServiceNetworkServiceAssociationPropsMixin.DnsEntryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_vpclattice » mixins » CfnServiceNetworkServiceAssociationPropsMixin » DnsEntryProperty |
The DNS information.
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 dnsEntryProperty: vpclattice_mixins.CfnServiceNetworkServiceAssociationPropsMixin.DnsEntryProperty = {
domainName: 'domainName',
hostedZoneId: 'hostedZoneId',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The domain name of the service. |
| hosted | string | The ID of the hosted zone. |
domainName?
Type:
string
(optional)
The domain name of the service.
hostedZoneId?
Type:
string
(optional)
The ID of the hosted zone.

.NET
Go
Java
Python
TypeScript