Interface VpcConfigurationUpdate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VpcConfigurationUpdate.Builder,VpcConfigurationUpdate>,SdkBuilder<VpcConfigurationUpdate.Builder,VpcConfigurationUpdate>,SdkPojo
- Enclosing class:
- VpcConfigurationUpdate
public static interface VpcConfigurationUpdate.Builder extends SdkPojo, CopyableBuilder<VpcConfigurationUpdate.Builder,VpcConfigurationUpdate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VpcConfigurationUpdate.BuildersecurityGroupIdUpdates(String... securityGroupIdUpdates)Describes updates to the array of SecurityGroup IDs used by the VPC configuration.VpcConfigurationUpdate.BuildersecurityGroupIdUpdates(Collection<String> securityGroupIdUpdates)Describes updates to the array of SecurityGroup IDs used by the VPC configuration.VpcConfigurationUpdate.BuildersubnetIdUpdates(String... subnetIdUpdates)Describes updates to the array of Subnet IDs used by the VPC configuration.VpcConfigurationUpdate.BuildersubnetIdUpdates(Collection<String> subnetIdUpdates)Describes updates to the array of Subnet IDs used by the VPC configuration.VpcConfigurationUpdate.BuildervpcConfigurationId(String vpcConfigurationId)Describes an update to the ID of the VPC configuration.-
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
-
vpcConfigurationId
VpcConfigurationUpdate.Builder vpcConfigurationId(String vpcConfigurationId)
Describes an update to the ID of the VPC configuration.
- Parameters:
vpcConfigurationId- Describes an update to the ID of the VPC configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIdUpdates
VpcConfigurationUpdate.Builder subnetIdUpdates(Collection<String> subnetIdUpdates)
Describes updates to the array of Subnet IDs used by the VPC configuration.
- Parameters:
subnetIdUpdates- Describes updates to the array of Subnet IDs used by the VPC configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIdUpdates
VpcConfigurationUpdate.Builder subnetIdUpdates(String... subnetIdUpdates)
Describes updates to the array of Subnet IDs used by the VPC configuration.
- Parameters:
subnetIdUpdates- Describes updates to the array of Subnet IDs used by the VPC configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIdUpdates
VpcConfigurationUpdate.Builder securityGroupIdUpdates(Collection<String> securityGroupIdUpdates)
Describes updates to the array of SecurityGroup IDs used by the VPC configuration.
- Parameters:
securityGroupIdUpdates- Describes updates to the array of SecurityGroup IDs used by the VPC configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIdUpdates
VpcConfigurationUpdate.Builder securityGroupIdUpdates(String... securityGroupIdUpdates)
Describes updates to the array of SecurityGroup IDs used by the VPC configuration.
- Parameters:
securityGroupIdUpdates- Describes updates to the array of SecurityGroup IDs used by the VPC configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-