Interface Vpc.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Vpc.Builder,Vpc>,SdkBuilder<Vpc.Builder,Vpc>,SdkPojo
- Enclosing class:
- Vpc
public static interface Vpc.Builder extends SdkPojo, CopyableBuilder<Vpc.Builder,Vpc>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vpc.BuildersecurityGroups(String... securityGroups)The security groups for the connector.Vpc.BuildersecurityGroups(Collection<String> securityGroups)The security groups for the connector.Vpc.Buildersubnets(String... subnets)The subnets for the connector.Vpc.Buildersubnets(Collection<String> subnets)The subnets for the connector.-
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
-
securityGroups
Vpc.Builder securityGroups(Collection<String> securityGroups)
The security groups for the connector.
- Parameters:
securityGroups- The security groups for the connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroups
Vpc.Builder securityGroups(String... securityGroups)
The security groups for the connector.
- Parameters:
securityGroups- The security groups for the connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnets
Vpc.Builder subnets(Collection<String> subnets)
The subnets for the connector.
- Parameters:
subnets- The subnets for the connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnets
Vpc.Builder subnets(String... subnets)
The subnets for the connector.
- Parameters:
subnets- The subnets for the connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-