Interface CfnEC2Fleet.NetworkInterfaceSpecificationRequestProperty

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

@Stability(Stable) public static interface CfnEC2Fleet.NetworkInterfaceSpecificationRequestProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 NetworkInterfaceSpecificationRequestProperty networkInterfaceSpecificationRequestProperty = NetworkInterfaceSpecificationRequestProperty.builder()
         .associatePublicIpAddress(false)
         .deleteOnTermination(false)
         .description("description")
         .deviceIndex(123)
         .groups(List.of("groups"))
         .interfaceType("interfaceType")
         .ipv6AddressCount(123)
         .ipv6Addresses(List.of(Ipv6AddressRequestProperty.builder()
                 .ipv6Address("ipv6Address")
                 .build()))
         .networkCardIndex(123)
         .networkInterfaceId("networkInterfaceId")
         .privateIpAddress("privateIpAddress")
         .privateIpAddresses(List.of(PrivateIpAddressSpecificationRequestProperty.builder()
                 .primary(false)
                 .privateIpAddress("privateIpAddress")
                 .build()))
         .secondaryPrivateIpAddressCount(123)
         .subnetId("subnetId")
         .build();
 

See Also: