Interface PutJobTaggingRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<PutJobTaggingRequest.Builder,PutJobTaggingRequest>,S3ControlRequest.Builder,SdkBuilder<PutJobTaggingRequest.Builder,PutJobTaggingRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- PutJobTaggingRequest
public static interface PutJobTaggingRequest.Builder extends S3ControlRequest.Builder, SdkPojo, CopyableBuilder<PutJobTaggingRequest.Builder,PutJobTaggingRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutJobTaggingRequest.BuilderaccountId(String accountId)The Amazon Web Services account ID associated with the S3 Batch Operations job.PutJobTaggingRequest.BuilderjobId(String jobId)The ID for the S3 Batch Operations job whose tags you want to replace.PutJobTaggingRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutJobTaggingRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)PutJobTaggingRequest.Buildertags(Collection<S3Tag> tags)The set of tags to associate with the S3 Batch Operations job.PutJobTaggingRequest.Buildertags(Consumer<S3Tag.Builder>... tags)The set of tags to associate with the S3 Batch Operations job.PutJobTaggingRequest.Buildertags(S3Tag... tags)The set of tags to associate with the S3 Batch Operations job.-
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.s3control.model.S3ControlRequest.Builder
build
-
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
-
accountId
PutJobTaggingRequest.Builder accountId(String accountId)
The Amazon Web Services account ID associated with the S3 Batch Operations job.
- Parameters:
accountId- The Amazon Web Services account ID associated with the S3 Batch Operations job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobId
PutJobTaggingRequest.Builder jobId(String jobId)
The ID for the S3 Batch Operations job whose tags you want to replace.
- Parameters:
jobId- The ID for the S3 Batch Operations job whose tags you want to replace.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
PutJobTaggingRequest.Builder tags(Collection<S3Tag> tags)
The set of tags to associate with the S3 Batch Operations job.
- Parameters:
tags- The set of tags to associate with the S3 Batch Operations job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
PutJobTaggingRequest.Builder tags(S3Tag... tags)
The set of tags to associate with the S3 Batch Operations job.
- Parameters:
tags- The set of tags to associate with the S3 Batch Operations job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
PutJobTaggingRequest.Builder tags(Consumer<S3Tag.Builder>... tags)
The set of tags to associate 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)
-
overrideConfiguration
PutJobTaggingRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutJobTaggingRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-