Interface NetworkInterface.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NetworkInterface.Builder,NetworkInterface>,SdkBuilder<NetworkInterface.Builder,NetworkInterface>,SdkPojo
- Enclosing class:
- NetworkInterface
public static interface NetworkInterface.Builder extends SdkPojo, CopyableBuilder<NetworkInterface.Builder,NetworkInterface>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetworkInterface.Builderips(String... ips)Network interface IPs.NetworkInterface.Builderips(Collection<String> ips)Network interface IPs.NetworkInterface.BuilderisPrimary(Boolean isPrimary)Whether this is the primary network interface.NetworkInterface.BuildermacAddress(String macAddress)The MAC address of the network interface.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
ips
NetworkInterface.Builder ips(Collection<String> ips)
Network interface IPs.
- Parameters:
ips- Network interface IPs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ips
NetworkInterface.Builder ips(String... ips)
Network interface IPs.
- Parameters:
ips- Network interface IPs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isPrimary
NetworkInterface.Builder isPrimary(Boolean isPrimary)
Whether this is the primary network interface.
- Parameters:
isPrimary- Whether this is the primary network interface.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
macAddress
NetworkInterface.Builder macAddress(String macAddress)
The MAC address of the network interface.
- Parameters:
macAddress- The MAC address of the network interface.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-