interface InstanceConnectEndpointDnsNamesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnInstanceConnectEndpointPropsMixin.InstanceConnectEndpointDnsNamesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnInstanceConnectEndpointPropsMixin_InstanceConnectEndpointDnsNamesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnInstanceConnectEndpointPropsMixin.InstanceConnectEndpointDnsNamesProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnInstanceConnectEndpointPropsMixin.InstanceConnectEndpointDnsNamesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnInstanceConnectEndpointPropsMixin » 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/cfn-property-mixins';
const instanceConnectEndpointDnsNamesProperty: ec2.CfnInstanceConnectEndpointPropsMixin.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