Interface DeleteTagsRequest.Builder
-
- All Superinterfaces:
ApplicationDiscoveryRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<DeleteTagsRequest.Builder,DeleteTagsRequest>,SdkBuilder<DeleteTagsRequest.Builder,DeleteTagsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- DeleteTagsRequest
public static interface DeleteTagsRequest.Builder extends ApplicationDiscoveryRequest.Builder, SdkPojo, CopyableBuilder<DeleteTagsRequest.Builder,DeleteTagsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeleteTagsRequest.BuilderconfigurationIds(String... configurationIds)A list of configuration items with tags that you want to delete.DeleteTagsRequest.BuilderconfigurationIds(Collection<String> configurationIds)A list of configuration items with tags that you want to delete.DeleteTagsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DeleteTagsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)DeleteTagsRequest.Buildertags(Collection<Tag> tags)Tags that you want to delete from one or more configuration items.DeleteTagsRequest.Buildertags(Consumer<Tag.Builder>... tags)Tags that you want to delete from one or more configuration items.DeleteTagsRequest.Buildertags(Tag... tags)Tags that you want to delete from one or more configuration items.-
Methods inherited from interface software.amazon.awssdk.services.applicationdiscovery.model.ApplicationDiscoveryRequest.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
-
configurationIds
DeleteTagsRequest.Builder configurationIds(Collection<String> configurationIds)
A list of configuration items with tags that you want to delete.
- Parameters:
configurationIds- A list of configuration items with tags that you want to delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationIds
DeleteTagsRequest.Builder configurationIds(String... configurationIds)
A list of configuration items with tags that you want to delete.
- Parameters:
configurationIds- A list of configuration items with tags that you want to delete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
DeleteTagsRequest.Builder tags(Collection<Tag> tags)
Tags that you want to delete from one or more configuration items. Specify the tags that you want to delete in a key-value format. For example:
{"key": "serverType", "value": "webServer"}- Parameters:
tags- Tags that you want to delete from one or more configuration items. Specify the tags that you want to delete in a key-value format. For example:{"key": "serverType", "value": "webServer"}- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
DeleteTagsRequest.Builder tags(Tag... tags)
Tags that you want to delete from one or more configuration items. Specify the tags that you want to delete in a key-value format. For example:
{"key": "serverType", "value": "webServer"}- Parameters:
tags- Tags that you want to delete from one or more configuration items. Specify the tags that you want to delete in a key-value format. For example:{"key": "serverType", "value": "webServer"}- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
DeleteTagsRequest.Builder tags(Consumer<Tag.Builder>... tags)
Tags that you want to delete from one or more configuration items. Specify the tags that you want to delete in a key-value format. For example:
This is a convenience method that creates an instance of the{"key": "serverType", "value": "webServer"}Tag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
overrideConfiguration
DeleteTagsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DeleteTagsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-