Interface IpAddressMember.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IpAddressMember.Builder,IpAddressMember>,SdkBuilder<IpAddressMember.Builder,IpAddressMember>,SdkPojo
- Enclosing class:
- IpAddressMember
public static interface IpAddressMember.Builder extends SdkPojo, CopyableBuilder<IpAddressMember.Builder,IpAddressMember>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IpAddressMember.BuilderallocationType(String allocationType)The type of allocation for the IP address.IpAddressMember.BuilderallocationType(AllocationType allocationType)The type of allocation for the IP address.IpAddressMember.BuilderipAddress(String ipAddress)The IP address.IpAddressMember.Builderprimary(Boolean primary)The primary IP address.-
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
-
ipAddress
IpAddressMember.Builder ipAddress(String ipAddress)
The IP address.
- Parameters:
ipAddress- The IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
primary
IpAddressMember.Builder primary(Boolean primary)
The primary IP address.
- Parameters:
primary- The primary IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allocationType
IpAddressMember.Builder allocationType(String allocationType)
The type of allocation for the IP address.
- Parameters:
allocationType- The type of allocation for the IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AllocationType,AllocationType
-
allocationType
IpAddressMember.Builder allocationType(AllocationType allocationType)
The type of allocation for the IP address.
- Parameters:
allocationType- The type of allocation for the IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AllocationType,AllocationType
-
-