Interface InputVpcRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InputVpcRequest.Builder,InputVpcRequest>,SdkBuilder<InputVpcRequest.Builder,InputVpcRequest>,SdkPojo
- Enclosing class:
- InputVpcRequest
public static interface InputVpcRequest.Builder extends SdkPojo, CopyableBuilder<InputVpcRequest.Builder,InputVpcRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputVpcRequest.BuildersecurityGroupIds(String... securityGroupIds)A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network interfaces.InputVpcRequest.BuildersecurityGroupIds(Collection<String> securityGroupIds)A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network interfaces.InputVpcRequest.BuildersubnetIds(String... subnetIds)A list of 2 VPC subnet IDs from the same VPC.InputVpcRequest.BuildersubnetIds(Collection<String> subnetIds)A list of 2 VPC subnet IDs from the same VPC.-
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
-
securityGroupIds
InputVpcRequest.Builder securityGroupIds(Collection<String> securityGroupIds)
A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network interfaces. Requires subnetIds. If none are specified then the VPC default security group will be used.- Parameters:
securityGroupIds- A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network interfaces. Requires subnetIds. If none are specified then the VPC default security group will be used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
InputVpcRequest.Builder securityGroupIds(String... securityGroupIds)
A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network interfaces. Requires subnetIds. If none are specified then the VPC default security group will be used.- Parameters:
securityGroupIds- A list of up to 5 EC2 VPC security group IDs to attach to the Input VPC network interfaces. Requires subnetIds. If none are specified then the VPC default security group will be used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
InputVpcRequest.Builder subnetIds(Collection<String> subnetIds)
A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two unique availability zones (AZ).- Parameters:
subnetIds- A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two unique availability zones (AZ).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
InputVpcRequest.Builder subnetIds(String... subnetIds)
A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two unique availability zones (AZ).- Parameters:
subnetIds- A list of 2 VPC subnet IDs from the same VPC. Subnet IDs must be mapped to two unique availability zones (AZ).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-