Interface TagSpecification.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TagSpecification.Builder,TagSpecification>,SdkBuilder<TagSpecification.Builder,TagSpecification>,SdkPojo
- Enclosing class:
- TagSpecification
@Mutable @NotThreadSafe public static interface TagSpecification.Builder extends SdkPojo, CopyableBuilder<TagSpecification.Builder,TagSpecification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TagSpecification.BuilderresourceType(String resourceType)The type of resource to tag on creation.TagSpecification.Buildertags(Collection<Tag> tags)Sets the value of the Tags property for this object.TagSpecification.Buildertags(Consumer<Tag.Builder>... tags)Sets the value of the Tags property for this object.TagSpecification.Buildertags(Tag... tags)Sets the value of the Tags property for this object.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
resourceType
TagSpecification.Builder resourceType(String resourceType)
The type of resource to tag on creation.
Valid Values:
-
auto-backup- The DB instance's automated backup. -
cluster-auto-backup- The DB cluster's automated backup.
- Parameters:
resourceType- The type of resource to tag on creation.Valid Values:
-
auto-backup- The DB instance's automated backup. -
cluster-auto-backup- The DB cluster's automated backup.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
tags
TagSpecification.Builder tags(Collection<Tag> tags)
Sets the value of the Tags property for this object.- Parameters:
tags- The new value for the Tags property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
TagSpecification.Builder tags(Tag... tags)
Sets the value of the Tags property for this object.- Parameters:
tags- The new value for the Tags property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
TagSpecification.Builder tags(Consumer<Tag.Builder>... tags)
Sets the value of the Tags property for this object. 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)
-
-