Interface UpdateVirtualNodeRequest.Builder
-
- All Superinterfaces:
AppMeshRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<UpdateVirtualNodeRequest.Builder,UpdateVirtualNodeRequest>,SdkBuilder<UpdateVirtualNodeRequest.Builder,UpdateVirtualNodeRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateVirtualNodeRequest
public static interface UpdateVirtualNodeRequest.Builder extends AppMeshRequest.Builder, SdkPojo, CopyableBuilder<UpdateVirtualNodeRequest.Builder,UpdateVirtualNodeRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateVirtualNodeRequest.BuilderclientToken(String clientToken)Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.UpdateVirtualNodeRequest.BuildermeshName(String meshName)The name of the service mesh that the virtual node resides in.UpdateVirtualNodeRequest.BuildermeshOwner(String meshOwner)The Amazon Web Services IAM account ID of the service mesh owner.UpdateVirtualNodeRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateVirtualNodeRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default UpdateVirtualNodeRequest.Builderspec(Consumer<VirtualNodeSpec.Builder> spec)The new virtual node specification to apply.UpdateVirtualNodeRequest.Builderspec(VirtualNodeSpec spec)The new virtual node specification to apply.UpdateVirtualNodeRequest.BuildervirtualNodeName(String virtualNodeName)The name of the virtual node to update.-
Methods inherited from interface software.amazon.awssdk.services.appmesh.model.AppMeshRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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
-
clientToken
UpdateVirtualNodeRequest.Builder clientToken(String clientToken)
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.
- Parameters:
clientToken- Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
meshName
UpdateVirtualNodeRequest.Builder meshName(String meshName)
The name of the service mesh that the virtual node resides in.
- Parameters:
meshName- The name of the service mesh that the virtual node resides in.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
meshOwner
UpdateVirtualNodeRequest.Builder meshOwner(String meshOwner)
The Amazon Web Services IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.
- Parameters:
meshOwner- The Amazon Web Services IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spec
UpdateVirtualNodeRequest.Builder spec(VirtualNodeSpec spec)
The new virtual node specification to apply. This overwrites the existing data.
- Parameters:
spec- The new virtual node specification to apply. This overwrites the existing data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spec
default UpdateVirtualNodeRequest.Builder spec(Consumer<VirtualNodeSpec.Builder> spec)
The new virtual node specification to apply. This overwrites the existing data.
This is a convenience method that creates an instance of theVirtualNodeSpec.Builderavoiding the need to create one manually viaVirtualNodeSpec.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tospec(VirtualNodeSpec).- Parameters:
spec- a consumer that will call methods onVirtualNodeSpec.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
spec(VirtualNodeSpec)
-
virtualNodeName
UpdateVirtualNodeRequest.Builder virtualNodeName(String virtualNodeName)
The name of the virtual node to update.
- Parameters:
virtualNodeName- The name of the virtual node to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateVirtualNodeRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateVirtualNodeRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-