Interface UntagRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UntagRequest.Builder,UntagRequest>,ResourceGroupsRequest.Builder,SdkBuilder<UntagRequest.Builder,UntagRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UntagRequest
public static interface UntagRequest.Builder extends ResourceGroupsRequest.Builder, SdkPojo, CopyableBuilder<UntagRequest.Builder,UntagRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UntagRequest.Builderarn(String arn)The ARN of the resource group from which to remove tags.UntagRequest.Builderkeys(String... keys)The keys of the tags to be removed.UntagRequest.Builderkeys(Collection<String> keys)The keys of the tags to be removed.UntagRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UntagRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
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.services.resourcegroups.model.ResourceGroupsRequest.Builder
build
-
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
-
arn
UntagRequest.Builder arn(String arn)
The ARN of the resource group from which to remove tags. The command removed both the specified keys and any values associated with those keys.
- Parameters:
arn- The ARN of the resource group from which to remove tags. The command removed both the specified keys and any values associated with those keys.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keys
UntagRequest.Builder keys(Collection<String> keys)
The keys of the tags to be removed.
- Parameters:
keys- The keys of the tags to be removed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keys
UntagRequest.Builder keys(String... keys)
The keys of the tags to be removed.
- Parameters:
keys- The keys of the tags to be removed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UntagRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UntagRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-