interface DnsResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.VpcLattice.CfnResourceConfiguration.DnsResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsvpclattice#CfnResourceConfiguration_DnsResourceProperty |
Java | software.amazon.awscdk.services.vpclattice.CfnResourceConfiguration.DnsResourceProperty |
Python | aws_cdk.aws_vpclattice.CfnResourceConfiguration.DnsResourceProperty |
TypeScript | aws-cdk-lib » aws_vpclattice » CfnResourceConfiguration » DnsResourceProperty |
The domain name of the resource configuration.
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 dnsResourceProperty: vpclattice.CfnResourceConfiguration.DnsResourceProperty = {
domainName: 'domainName',
ipAddressType: 'ipAddressType',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The domain name of the resource configuration. |
| ip | string | The IP address type for the resource configuration. |
domainName
Type:
string
The domain name of the resource configuration.
ipAddressType
Type:
string
The IP address type for the resource configuration.
Dualstack is not currently supported.

.NET
Go
Java
Python
TypeScript