Interface GetJobTaggingResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetJobTaggingResponse.Builder,GetJobTaggingResponse>,S3ControlResponse.Builder,SdkBuilder<GetJobTaggingResponse.Builder,GetJobTaggingResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetJobTaggingResponse
public static interface GetJobTaggingResponse.Builder extends S3ControlResponse.Builder, SdkPojo, CopyableBuilder<GetJobTaggingResponse.Builder,GetJobTaggingResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetJobTaggingResponse.Buildertags(Collection<S3Tag> tags)The set of tags associated with the S3 Batch Operations job.GetJobTaggingResponse.Buildertags(Consumer<S3Tag.Builder>... tags)The set of tags associated with the S3 Batch Operations job.GetJobTaggingResponse.Buildertags(S3Tag... tags)The set of tags associated with the S3 Batch Operations job.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.s3control.model.S3ControlResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
tags
GetJobTaggingResponse.Builder tags(Collection<S3Tag> tags)
The set of tags associated with the S3 Batch Operations job.
- Parameters:
tags- The set of tags associated with the S3 Batch Operations job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
GetJobTaggingResponse.Builder tags(S3Tag... tags)
The set of tags associated with the S3 Batch Operations job.
- Parameters:
tags- The set of tags associated with the S3 Batch Operations job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
GetJobTaggingResponse.Builder tags(Consumer<S3Tag.Builder>... tags)
The set of tags associated with the S3 Batch Operations job.
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#tags(List.) - Parameters:
tags- 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:
#tags(java.util.Collection)
-
-