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