Interface VpcConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VpcConfig.Builder,VpcConfig>,SdkBuilder<VpcConfig.Builder,VpcConfig>,SdkPojo
- Enclosing class:
- VpcConfig
public static interface VpcConfig.Builder extends SdkPojo, CopyableBuilder<VpcConfig.Builder,VpcConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VpcConfig.BuildersecurityGroupIds(String... securityGroupIds)The identifiers of the security groups for the fleet or image builder.VpcConfig.BuildersecurityGroupIds(Collection<String> securityGroupIds)The identifiers of the security groups for the fleet or image builder.VpcConfig.BuildersubnetIds(String... subnetIds)The identifiers of the subnets to which a network interface is attached from the fleet instance or image builder instance.VpcConfig.BuildersubnetIds(Collection<String> subnetIds)The identifiers of the subnets to which a network interface is attached from the fleet instance or image builder instance.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
subnetIds
VpcConfig.Builder subnetIds(Collection<String> subnetIds)
The identifiers of the subnets to which a network interface is attached from the fleet instance or image builder instance. Fleet instances use one or more subnets. Image builder instances use one subnet.
- Parameters:
subnetIds- The identifiers of the subnets to which a network interface is attached from the fleet instance or image builder instance. Fleet instances use one or more subnets. Image builder instances use one subnet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
VpcConfig.Builder subnetIds(String... subnetIds)
The identifiers of the subnets to which a network interface is attached from the fleet instance or image builder instance. Fleet instances use one or more subnets. Image builder instances use one subnet.
- Parameters:
subnetIds- The identifiers of the subnets to which a network interface is attached from the fleet instance or image builder instance. Fleet instances use one or more subnets. Image builder instances use one subnet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcConfig.Builder securityGroupIds(Collection<String> securityGroupIds)
The identifiers of the security groups for the fleet or image builder.
- Parameters:
securityGroupIds- The identifiers of the security groups for the fleet or image builder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
VpcConfig.Builder securityGroupIds(String... securityGroupIds)
The identifiers of the security groups for the fleet or image builder.
- Parameters:
securityGroupIds- The identifiers of the security groups for the fleet or image builder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-