Interface AddTagsToResourceRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<AddTagsToResourceRequest.Builder,AddTagsToResourceRequest>,ElastiCacheRequest.Builder,SdkBuilder<AddTagsToResourceRequest.Builder,AddTagsToResourceRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- AddTagsToResourceRequest
public static interface AddTagsToResourceRequest.Builder extends ElastiCacheRequest.Builder, SdkPojo, CopyableBuilder<AddTagsToResourceRequest.Builder,AddTagsToResourceRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddTagsToResourceRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)AddTagsToResourceRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)AddTagsToResourceRequest.BuilderresourceName(String resourceName)The Amazon Resource Name (ARN) of the resource to which the tags are to be added, for examplearn:aws:elasticache:us-west-2:0123456789:cluster:myClusterorarn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot.AddTagsToResourceRequest.Buildertags(Collection<Tag> tags)A list of tags to be added to this resource.AddTagsToResourceRequest.Buildertags(Consumer<Tag.Builder>... tags)A list of tags to be added to this resource.AddTagsToResourceRequest.Buildertags(Tag... tags)A list of tags to be added to this resource.-
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.elasticache.model.ElastiCacheRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
resourceName
AddTagsToResourceRequest.Builder resourceName(String resourceName)
The Amazon Resource Name (ARN) of the resource to which the tags are to be added, for example
arn:aws:elasticache:us-west-2:0123456789:cluster:myClusterorarn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot. ElastiCache resources are cluster and snapshot.For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Service Namespaces.
- Parameters:
resourceName- The Amazon Resource Name (ARN) of the resource to which the tags are to be added, for examplearn:aws:elasticache:us-west-2:0123456789:cluster:myClusterorarn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot. ElastiCache resources are cluster and snapshot.For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Service Namespaces.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AddTagsToResourceRequest.Builder tags(Collection<Tag> tags)
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
- Parameters:
tags- A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AddTagsToResourceRequest.Builder tags(Tag... tags)
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
- Parameters:
tags- A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AddTagsToResourceRequest.Builder tags(Consumer<Tag.Builder>... tags)
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
This is a convenience method that creates an instance of theTag.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
AddTagsToResourceRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
AddTagsToResourceRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-