interface InstanceConnectEndpointPublicDnsNamesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnInstanceConnectEndpoint.InstanceConnectEndpointPublicDnsNamesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnInstanceConnectEndpoint_InstanceConnectEndpointPublicDnsNamesProperty |
Java | software.amazon.awscdk.services.ec2.CfnInstanceConnectEndpoint.InstanceConnectEndpointPublicDnsNamesProperty |
Python | aws_cdk.aws_ec2.CfnInstanceConnectEndpoint.InstanceConnectEndpointPublicDnsNamesProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnInstanceConnectEndpoint » InstanceConnectEndpointPublicDnsNamesProperty |
The public DNS names of the endpoint, including IPv4-only and dualstack DNS names.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const instanceConnectEndpointPublicDnsNamesProperty: ec2.CfnInstanceConnectEndpoint.InstanceConnectEndpointPublicDnsNamesProperty = {
dualstack: {
dnsName: 'dnsName',
fipsDnsName: 'fipsDnsName',
},
ipv4: {
dnsName: 'dnsName',
fipsDnsName: 'fipsDnsName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| dualstack? | IResolvable | Instance | The DNS names of the endpoint. |
| ipv4? | IResolvable | Instance | The DNS names of the endpoint. |
dualstack?
Type:
IResolvable | Instance
(optional)
The DNS names of the endpoint.
ipv4?
Type:
IResolvable | Instance
(optional)
The DNS names of the endpoint.

.NET
Go
Java
Python
TypeScript