@Stability(value=Stable)
public static interface CfnInstance.NetworkInterfaceProperty
extends software.amazon.jsii.JsiiSerializable
You can create a network interface when launching an instance. For an example, see the AWS::EC2::Instance examples .
Alternatively, you can attach an existing network interface when launching an instance. For an example, see the AWS::EC2:NetworkInterface examples .
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.*;
NetworkInterfaceProperty networkInterfaceProperty = NetworkInterfaceProperty.builder()
.deviceIndex("deviceIndex")
// the properties below are optional
.associateCarrierIpAddress(false)
.associatePublicIpAddress(false)
.deleteOnTermination(false)
.description("description")
.groupSet(List.of("groupSet"))
.ipv6AddressCount(123)
.ipv6Addresses(List.of(InstanceIpv6AddressProperty.builder()
.ipv6Address("ipv6Address")
.build()))
.networkInterfaceId("networkInterfaceId")
.privateIpAddress("privateIpAddress")
.privateIpAddresses(List.of(PrivateIpAddressSpecificationProperty.builder()
.primary(false)
.privateIpAddress("privateIpAddress")
.build()))
.secondaryPrivateIpAddressCount(123)
.subnetId("subnetId")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnInstance.NetworkInterfaceProperty.Builder
A builder for
CfnInstance.NetworkInterfaceProperty |
static class |
CfnInstance.NetworkInterfaceProperty.Jsii$Proxy
An implementation for
CfnInstance.NetworkInterfaceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnInstance.NetworkInterfaceProperty.Builder |
builder() |
default Object |
getAssociateCarrierIpAddress()
`CfnInstance.NetworkInterfaceProperty.AssociateCarrierIpAddress`.
|
default Object |
getAssociatePublicIpAddress()
Indicates whether to assign a public IPv4 address to an instance.
|
default Object |
getDeleteOnTermination()
Indicates whether the network interface is deleted when the instance is terminated.
|
default String |
getDescription()
The description of the network interface.
|
String |
getDeviceIndex()
The position of the network interface in the attachment order.
|
default List<String> |
getGroupSet()
The IDs of the security groups for the network interface.
|
default Number |
getIpv6AddressCount()
A number of IPv6 addresses to assign to the network interface.
|
default Object |
getIpv6Addresses()
One or more IPv6 addresses to assign to the network interface.
|
default String |
getNetworkInterfaceId()
The ID of the network interface, when attaching an existing network interface.
|
default String |
getPrivateIpAddress()
The private IPv4 address of the network interface.
|
default Object |
getPrivateIpAddresses()
One or more private IPv4 addresses to assign to the network interface.
|
default Number |
getSecondaryPrivateIpAddressCount()
The number of secondary private IPv4 addresses.
|
default String |
getSubnetId()
The ID of the subnet associated with the network interface.
|
@Stability(value=Stable) @NotNull String getDeviceIndex()
A primary network interface has a device index of 0.
If you create a network interface when launching an instance, you must specify the device index.
@Stability(value=Stable) @Nullable default Object getAssociateCarrierIpAddress()
@Stability(value=Stable) @Nullable default Object getAssociatePublicIpAddress()
Applies only if creating a network interface when launching an instance. The network interface must be the primary network interface. If launching into a default subnet, the default value is true .
@Stability(value=Stable) @Nullable default Object getDeleteOnTermination()
Applies only if creating a network interface when launching an instance.
@Stability(value=Stable) @Nullable default String getDescription()
Applies only if creating a network interface when launching an instance.
@Stability(value=Stable) @Nullable default List<String> getGroupSet()
Applies only if creating a network interface when launching an instance.
@Stability(value=Stable) @Nullable default Number getIpv6AddressCount()
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.
@Stability(value=Stable) @Nullable default Object getIpv6Addresses()
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.
@Stability(value=Stable) @Nullable default String getNetworkInterfaceId()
@Stability(value=Stable) @Nullable default String getPrivateIpAddress()
Applies only if creating a network interface when launching an instance.
@Stability(value=Stable) @Nullable default Object getPrivateIpAddresses()
Only one private IPv4 address can be designated as primary.
@Stability(value=Stable) @Nullable default Number getSecondaryPrivateIpAddressCount()
You can't specify this option and specify more than one private IP address using the private IP addresses option.
@Stability(value=Stable) @Nullable default String getSubnetId()
Applies only if creating a network interface when launching an instance.
@Stability(value=Stable) static CfnInstance.NetworkInterfaceProperty.Builder builder()
Copyright © 2022. All rights reserved.