Interface S3SetObjectTaggingOperation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3SetObjectTaggingOperation.Builder,S3SetObjectTaggingOperation>,SdkBuilder<S3SetObjectTaggingOperation.Builder,S3SetObjectTaggingOperation>,SdkPojo
- Enclosing class:
- S3SetObjectTaggingOperation
public static interface S3SetObjectTaggingOperation.Builder extends SdkPojo, CopyableBuilder<S3SetObjectTaggingOperation.Builder,S3SetObjectTaggingOperation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3SetObjectTaggingOperation.BuildertagSet(Collection<S3Tag> tagSet)S3SetObjectTaggingOperation.BuildertagSet(Consumer<S3Tag.Builder>... tagSet)This is a convenience method that creates an instance of theS3Tag.Builderavoiding the need to create one manually viaS3Tag.builder().S3SetObjectTaggingOperation.BuildertagSet(S3Tag... tagSet)-
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
-
tagSet
S3SetObjectTaggingOperation.Builder tagSet(Collection<S3Tag> tagSet)
- Parameters:
tagSet-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagSet
S3SetObjectTaggingOperation.Builder tagSet(S3Tag... tagSet)
- Parameters:
tagSet-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tagSet
S3SetObjectTaggingOperation.Builder tagSet(Consumer<S3Tag.Builder>... tagSet)
This is a convenience method that creates an instance of theS3Tag.Builderavoiding the need to create one manually viaS3Tag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tagSet(List.) - Parameters:
tagSet- a consumer that will call methods onS3Tag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tagSet(java.util.Collection)
-
-