Class CfnInstanceConnectEndpoint.InstanceConnectEndpointPublicDnsNamesProperty
The public DNS names of the endpoint, including IPv4-only and dualstack DNS names.
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnInstanceConnectEndpoint.InstanceConnectEndpointPublicDnsNamesProperty : CfnInstanceConnectEndpoint.IInstanceConnectEndpointPublicDnsNamesProperty
Syntax (vb)
Public Class CfnInstanceConnectEndpoint.InstanceConnectEndpointPublicDnsNamesProperty Implements CfnInstanceConnectEndpoint.IInstanceConnectEndpointPublicDnsNamesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var instanceConnectEndpointPublicDnsNamesProperty = new InstanceConnectEndpointPublicDnsNamesProperty {
Dualstack = new InstanceConnectEndpointDnsNamesProperty {
DnsName = "dnsName",
FipsDnsName = "fipsDnsName"
},
Ipv4 = new InstanceConnectEndpointDnsNamesProperty {
DnsName = "dnsName",
FipsDnsName = "fipsDnsName"
}
};
Synopsis
Constructors
| InstanceConnectEndpointPublicDnsNamesProperty() | The public DNS names of the endpoint, including IPv4-only and dualstack DNS names. |
Properties
| Dualstack | The DNS names of the endpoint. |
| Ipv4 | The DNS names of the endpoint. |
Constructors
InstanceConnectEndpointPublicDnsNamesProperty()
The public DNS names of the endpoint, including IPv4-only and dualstack DNS names.
public InstanceConnectEndpointPublicDnsNamesProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var instanceConnectEndpointPublicDnsNamesProperty = new InstanceConnectEndpointPublicDnsNamesProperty {
Dualstack = new InstanceConnectEndpointDnsNamesProperty {
DnsName = "dnsName",
FipsDnsName = "fipsDnsName"
},
Ipv4 = new InstanceConnectEndpointDnsNamesProperty {
DnsName = "dnsName",
FipsDnsName = "fipsDnsName"
}
};
Properties
Dualstack
The DNS names of the endpoint.
public object? Dualstack { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnInstanceConnectEndpoint.IInstanceConnectEndpointDnsNamesProperty
Ipv4
The DNS names of the endpoint.
public object? Ipv4 { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnInstanceConnectEndpoint.IInstanceConnectEndpointDnsNamesProperty