interface InstanceConnectEndpointDnsNamesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnInstanceConnectEndpoint.InstanceConnectEndpointDnsNamesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnInstanceConnectEndpoint_InstanceConnectEndpointDnsNamesProperty |
Java | software.amazon.awscdk.services.ec2.CfnInstanceConnectEndpoint.InstanceConnectEndpointDnsNamesProperty |
Python | aws_cdk.aws_ec2.CfnInstanceConnectEndpoint.InstanceConnectEndpointDnsNamesProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnInstanceConnectEndpoint » InstanceConnectEndpointDnsNamesProperty |
The DNS names of the endpoint.
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 instanceConnectEndpointDnsNamesProperty: ec2.CfnInstanceConnectEndpoint.InstanceConnectEndpointDnsNamesProperty = {
dnsName: 'dnsName',
fipsDnsName: 'fipsDnsName',
};
Properties
| Name | Type | Description |
|---|---|---|
| dns | string | The DNS name of the EC2 Instance Connect Endpoint. |
| fips | string | The Federal Information Processing Standards (FIPS) compliant DNS name of the EC2 Instance Connect Endpoint. |
dnsName?
Type:
string
(optional)
The DNS name of the EC2 Instance Connect Endpoint.
fipsDnsName?
Type:
string
(optional)
The Federal Information Processing Standards (FIPS) compliant DNS name of the EC2 Instance Connect Endpoint.

.NET
Go
Java
Python
TypeScript