Interface TagInfoForResource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TagInfoForResource.Builder,TagInfoForResource>,SdkBuilder<TagInfoForResource.Builder,TagInfoForResource>,SdkPojo
- Enclosing class:
- TagInfoForResource
public static interface TagInfoForResource.Builder extends SdkPojo, CopyableBuilder<TagInfoForResource.Builder,TagInfoForResource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TagInfoForResource.BuilderresourceARN(String resourceARN)The Amazon Resource Name (ARN) of the resource.TagInfoForResource.BuildertagList(Collection<Tag> tagList)The array of Tag objects defined for the resource.TagInfoForResource.BuildertagList(Consumer<Tag.Builder>... tagList)The array of Tag objects defined for the resource.TagInfoForResource.BuildertagList(Tag... tagList)The array of Tag objects defined for the resource.-
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
-
resourceARN
TagInfoForResource.Builder resourceARN(String resourceARN)
The Amazon Resource Name (ARN) of the resource.
- Parameters:
resourceARN- The Amazon Resource Name (ARN) of the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagList
TagInfoForResource.Builder tagList(Collection<Tag> tagList)
The array of Tag objects defined for the resource.
- Parameters:
tagList- The array of Tag objects defined for the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagList
TagInfoForResource.Builder tagList(Tag... tagList)
The array of Tag objects defined for the resource.
- Parameters:
tagList- The array of Tag objects defined for the resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagList
TagInfoForResource.Builder tagList(Consumer<Tag.Builder>... tagList)
The array of Tag objects defined for the resource.
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#tagList(List.) - Parameters:
tagList- 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:
#tagList(java.util.Collection)
-
-