Interface VPCConfigResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VPCConfigResponse.Builder,VPCConfigResponse>,SdkBuilder<VPCConfigResponse.Builder,VPCConfigResponse>,SdkPojo
- Enclosing class:
- VPCConfigResponse
public static interface VPCConfigResponse.Builder extends SdkPojo, CopyableBuilder<VPCConfigResponse.Builder,VPCConfigResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VPCConfigResponse.BuilderassignPublicIp(Boolean assignPublicIp)A boolean indicating if a public IP was assigned.VPCConfigResponse.BuildersecurityGroups(String... securityGroups)A list of security group IDs associated with the simulation job.VPCConfigResponse.BuildersecurityGroups(Collection<String> securityGroups)A list of security group IDs associated with the simulation job.VPCConfigResponse.Buildersubnets(String... subnets)A list of subnet IDs associated with the simulation job.VPCConfigResponse.Buildersubnets(Collection<String> subnets)A list of subnet IDs associated with the simulation job.VPCConfigResponse.BuildervpcId(String vpcId)The VPC ID associated with your simulation job.-
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
-
subnets
VPCConfigResponse.Builder subnets(Collection<String> subnets)
A list of subnet IDs associated with the simulation job.
- Parameters:
subnets- A list of subnet IDs associated with the simulation job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnets
VPCConfigResponse.Builder subnets(String... subnets)
A list of subnet IDs associated with the simulation job.
- Parameters:
subnets- A list of subnet IDs associated with the simulation job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroups
VPCConfigResponse.Builder securityGroups(Collection<String> securityGroups)
A list of security group IDs associated with the simulation job.
- Parameters:
securityGroups- A list of security group IDs associated with the simulation job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroups
VPCConfigResponse.Builder securityGroups(String... securityGroups)
A list of security group IDs associated with the simulation job.
- Parameters:
securityGroups- A list of security group IDs associated with the simulation job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcId
VPCConfigResponse.Builder vpcId(String vpcId)
The VPC ID associated with your simulation job.
- Parameters:
vpcId- The VPC ID associated with your simulation job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assignPublicIp
VPCConfigResponse.Builder assignPublicIp(Boolean assignPublicIp)
A boolean indicating if a public IP was assigned.
- Parameters:
assignPublicIp- A boolean indicating if a public IP was assigned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-