Interface CfnSpotFleet.InstanceNetworkInterfaceSpecificationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnSpotFleet.InstanceNetworkInterfaceSpecificationProperty.Jsii$Proxy
- Enclosing class:
- CfnSpotFleet
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.*;
 InstanceNetworkInterfaceSpecificationProperty instanceNetworkInterfaceSpecificationProperty = InstanceNetworkInterfaceSpecificationProperty.builder()
         .associatePublicIpAddress(false)
         .deleteOnTermination(false)
         .description("description")
         .deviceIndex(123)
         .groups(List.of("groups"))
         .ipv6AddressCount(123)
         .ipv6Addresses(List.of(InstanceIpv6AddressProperty.builder()
                 .ipv6Address("ipv6Address")
                 .build()))
         .networkInterfaceId("networkInterfaceId")
         .privateIpAddresses(List.of(PrivateIpAddressSpecificationProperty.builder()
                 .privateIpAddress("privateIpAddress")
                 // the properties below are optional
                 .primary(false)
                 .build()))
         .secondaryPrivateIpAddressCount(123)
         .subnetId("subnetId")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnSpotFleet.InstanceNetworkInterfaceSpecificationProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default ObjectIndicates whether to assign a public IPv4 address to an instance you launch in a VPC.default ObjectIndicates whether the network interface is deleted when the instance is terminated.default StringThe description of the network interface.default NumberThe position of the network interface in the attachment order.The IDs of the security groups for the network interface.default NumberA number of IPv6 addresses to assign to the network interface.default ObjectThe IPv6 addresses to assign to the network interface.default StringThe ID of the network interface.default ObjectThe private IPv4 addresses to assign to the network interface.default NumberThe number of secondary private IPv4 addresses.default StringThe ID of the subnet associated with the network interface.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getAssociatePublicIpAddressIndicates whether to assign a public IPv4 address to an instance you launch in a VPC.The public IP address can only be assigned to a network interface for eth0, and can only be assigned to a new network interface, not an existing one. You cannot specify more than one network interface in the request. If launching into a default subnet, the default value is true.
- 
getDeleteOnTerminationIndicates whether the network interface is deleted when the instance is terminated.
- 
getDescriptionThe description of the network interface.Applies only if creating a network interface when launching an instance. 
- 
getDeviceIndexThe position of the network interface in the attachment order.A primary network interface has a device index of 0. If you specify a network interface when launching an instance, you must specify the device index. 
- 
getGroupsThe IDs of the security groups for the network interface.Applies only if creating a network interface when launching an instance. 
- 
getIpv6AddressCountA number of IPv6 addresses to assign to the network interface.Amazon EC2 chooses the IPv6 addresses from the range of the subnet. You cannot specify this option and the option to assign specific IPv6 addresses in the same request. You can specify this option if you've specified a minimum number of instances to launch. 
- 
getIpv6AddressesThe IPv6 addresses to assign to the network interface.You cannot specify this option and the option to assign a number of IPv6 addresses in the same request. You cannot specify this option if you've specified a minimum number of instances to launch. 
- 
getNetworkInterfaceIdThe ID of the network interface.If you are creating a Spot Fleet, omit this parameter because you can’t specify a network interface ID in a launch specification. 
- 
getPrivateIpAddressesThe private IPv4 addresses to assign to the network interface.Only one private IPv4 address can be designated as primary. You cannot specify this option if you're launching more than one instance in a RunInstances request. 
- 
getSecondaryPrivateIpAddressCountThe number of secondary private IPv4 addresses.You can't specify this option and specify more than one private IP address using the private IP addresses option. You cannot specify this option if you're launching more than one instance in a RunInstances request. 
- 
getSubnetIdThe ID of the subnet associated with the network interface.Applies only if creating a network interface when launching an instance. 
- 
builder@Stability(Stable) static CfnSpotFleet.InstanceNetworkInterfaceSpecificationProperty.Builder builder()
 
-