Interface CfnNetworkInterfacePropsMixin.PublicIpDnsNameOptionsProperty

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

@Stability(Stable) public static interface CfnNetworkInterfacePropsMixin.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.mixins.preview.services.ec2.mixins.*;
 PublicIpDnsNameOptionsProperty publicIpDnsNameOptionsProperty = PublicIpDnsNameOptionsProperty.builder()
         .dnsHostnameType("dnsHostnameType")
         .publicDualStackDnsName("publicDualStackDnsName")
         .publicIpv4DnsName("publicIpv4DnsName")
         .publicIpv6DnsName("publicIpv6DnsName")
         .build();
 

See Also: