Interface CfnLaunchTemplate.Ipv4PrefixSpecificationProperty

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

@Stability(Stable) public static interface CfnLaunchTemplate.Ipv4PrefixSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Specifies an IPv4 prefix for a network interface.

Ipv4PrefixSpecification is a property of AWS::EC2::LaunchTemplate NetworkInterface .

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.*;
 Ipv4PrefixSpecificationProperty ipv4PrefixSpecificationProperty = Ipv4PrefixSpecificationProperty.builder()
         .ipv4Prefix("ipv4Prefix")
         .build();