Interface StaticIpConnectionInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StaticIpConnectionInfo.Builder,StaticIpConnectionInfo>,SdkBuilder<StaticIpConnectionInfo.Builder,StaticIpConnectionInfo>,SdkPojo
- Enclosing class:
- StaticIpConnectionInfo
public static interface StaticIpConnectionInfo.Builder extends SdkPojo, CopyableBuilder<StaticIpConnectionInfo.Builder,StaticIpConnectionInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StaticIpConnectionInfo.BuilderdefaultGateway(String defaultGateway)The connection's default gateway.StaticIpConnectionInfo.Builderdns(String... dns)The connection's DNS address.StaticIpConnectionInfo.Builderdns(Collection<String> dns)The connection's DNS address.StaticIpConnectionInfo.BuilderipAddress(String ipAddress)The connection's IP address.StaticIpConnectionInfo.Buildermask(String mask)The connection's DNS mask.-
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
-
defaultGateway
StaticIpConnectionInfo.Builder defaultGateway(String defaultGateway)
The connection's default gateway.
- Parameters:
defaultGateway- The connection's default gateway.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dns
StaticIpConnectionInfo.Builder dns(Collection<String> dns)
The connection's DNS address.
- Parameters:
dns- The connection's DNS address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dns
StaticIpConnectionInfo.Builder dns(String... dns)
The connection's DNS address.
- Parameters:
dns- The connection's DNS address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipAddress
StaticIpConnectionInfo.Builder ipAddress(String ipAddress)
The connection's IP address.
- Parameters:
ipAddress- The connection's IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mask
StaticIpConnectionInfo.Builder mask(String mask)
The connection's DNS mask.
- Parameters:
mask- The connection's DNS mask.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-