Interface GatewayNetwork.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GatewayNetwork.Builder,GatewayNetwork>,SdkBuilder<GatewayNetwork.Builder,GatewayNetwork>,SdkPojo
- Enclosing class:
- GatewayNetwork
public static interface GatewayNetwork.Builder extends SdkPojo, CopyableBuilder<GatewayNetwork.Builder,GatewayNetwork>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GatewayNetwork.BuildercidrBlock(String cidrBlock)A unique IP address range to use for this network.GatewayNetwork.Buildername(String name)The name of the network.-
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
-
cidrBlock
GatewayNetwork.Builder cidrBlock(String cidrBlock)
A unique IP address range to use for this network. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.- Parameters:
cidrBlock- A unique IP address range to use for this network. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
GatewayNetwork.Builder name(String name)
The name of the network. This name is used to reference the network and must be unique among networks in this gateway.- Parameters:
name- The name of the network. This name is used to reference the network and must be unique among networks in this gateway.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-