Interface CfnNetworkInterface.PublicIpDnsNameOptionsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNetworkInterface.PublicIpDnsNameOptionsProperty.Jsii$Proxy
Enclosing class:
CfnNetworkInterface

@Stability(Stable) public static interface CfnNetworkInterface.PublicIpDnsNameOptionsProperty extends software.amazon.jsii.JsiiSerializable
Public hostname type options.

For more information, see EC2 instance hostnames, DNS names, and domains in the Amazon EC2 User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 PublicIpDnsNameOptionsProperty publicIpDnsNameOptionsProperty = PublicIpDnsNameOptionsProperty.builder()
         .dnsHostnameType("dnsHostnameType")
         .publicDualStackDnsName("publicDualStackDnsName")
         .publicIpv4DnsName("publicIpv4DnsName")
         .publicIpv6DnsName("publicIpv6DnsName")
         .build();
 

See Also: