Interface UpdateMeshRequest.Builder
-
- All Superinterfaces:
AppMeshRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<UpdateMeshRequest.Builder,UpdateMeshRequest>,SdkBuilder<UpdateMeshRequest.Builder,UpdateMeshRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateMeshRequest
public static interface UpdateMeshRequest.Builder extends AppMeshRequest.Builder, SdkPojo, CopyableBuilder<UpdateMeshRequest.Builder,UpdateMeshRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateMeshRequest.BuilderclientToken(String clientToken)Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.UpdateMeshRequest.BuildermeshName(String meshName)The name of the service mesh to update.UpdateMeshRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateMeshRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default UpdateMeshRequest.Builderspec(Consumer<MeshSpec.Builder> spec)The service mesh specification to apply.UpdateMeshRequest.Builderspec(MeshSpec spec)The service mesh specification to apply.-
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
UpdateMeshRequest.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
UpdateMeshRequest.Builder meshName(String meshName)
The name of the service mesh to update.
- Parameters:
meshName- The name of the service mesh to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spec
UpdateMeshRequest.Builder spec(MeshSpec spec)
The service mesh specification to apply.
- Parameters:
spec- The service mesh specification to apply.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spec
default UpdateMeshRequest.Builder spec(Consumer<MeshSpec.Builder> spec)
The service mesh specification to apply.
This is a convenience method that creates an instance of theMeshSpec.Builderavoiding the need to create one manually viaMeshSpec.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tospec(MeshSpec).- Parameters:
spec- a consumer that will call methods onMeshSpec.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
spec(MeshSpec)
-
overrideConfiguration
UpdateMeshRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateMeshRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-