Interface UnlabelParameterVersionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UnlabelParameterVersionRequest.Builder,UnlabelParameterVersionRequest>,SdkBuilder<UnlabelParameterVersionRequest.Builder,UnlabelParameterVersionRequest>,SdkPojo,SdkRequest.Builder,SsmRequest.Builder
- Enclosing class:
- UnlabelParameterVersionRequest
public static interface UnlabelParameterVersionRequest.Builder extends SsmRequest.Builder, SdkPojo, CopyableBuilder<UnlabelParameterVersionRequest.Builder,UnlabelParameterVersionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UnlabelParameterVersionRequest.Builderlabels(String... labels)One or more labels to delete from the specified parameter version.UnlabelParameterVersionRequest.Builderlabels(Collection<String> labels)One or more labels to delete from the specified parameter version.UnlabelParameterVersionRequest.Buildername(String name)The name of the parameter from which you want to delete one or more labels.UnlabelParameterVersionRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UnlabelParameterVersionRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UnlabelParameterVersionRequest.BuilderparameterVersion(Long parameterVersion)The specific version of the parameter which you want to delete one or more labels from.-
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
-
Methods inherited from interface software.amazon.awssdk.services.ssm.model.SsmRequest.Builder
build
-
-
-
-
Method Detail
-
name
UnlabelParameterVersionRequest.Builder name(String name)
The name of the parameter from which you want to delete one or more labels.
- Parameters:
name- The name of the parameter from which you want to delete one or more labels.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterVersion
UnlabelParameterVersionRequest.Builder parameterVersion(Long parameterVersion)
The specific version of the parameter which you want to delete one or more labels from. If it isn't present, the call will fail.
- Parameters:
parameterVersion- The specific version of the parameter which you want to delete one or more labels from. If it isn't present, the call will fail.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
labels
UnlabelParameterVersionRequest.Builder labels(Collection<String> labels)
One or more labels to delete from the specified parameter version.
- Parameters:
labels- One or more labels to delete from the specified parameter version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
labels
UnlabelParameterVersionRequest.Builder labels(String... labels)
One or more labels to delete from the specified parameter version.
- Parameters:
labels- One or more labels to delete from the specified parameter version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UnlabelParameterVersionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UnlabelParameterVersionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-