Interface S3Location.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3Location.Builder,S3Location>,SdkBuilder<S3Location.Builder,S3Location>,SdkPojo
- Enclosing class:
- S3Location
public static interface S3Location.Builder extends SdkPojo, CopyableBuilder<S3Location.Builder,S3Location>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description S3Location.BuilderaccessControlList(Collection<Grant> accessControlList)A list of grants that control access to the staged results.S3Location.BuilderaccessControlList(Consumer<Grant.Builder>... accessControlList)A list of grants that control access to the staged results.S3Location.BuilderaccessControlList(Grant... accessControlList)A list of grants that control access to the staged results.S3Location.BuilderbucketName(String bucketName)The name of the Amazon S3 bucket where the job results are stored.S3Location.BuildercannedACL(String cannedACL)The canned access control list (ACL) to apply to the job results.S3Location.BuildercannedACL(CannedACL cannedACL)The canned access control list (ACL) to apply to the job results.default S3Location.Builderencryption(Consumer<Encryption.Builder> encryption)Contains information about the encryption used to store the job results in Amazon S3.S3Location.Builderencryption(Encryption encryption)Contains information about the encryption used to store the job results in Amazon S3.S3Location.Builderprefix(String prefix)The prefix that is prepended to the results for this request.S3Location.BuilderstorageClass(String storageClass)The storage class used to store the job results.S3Location.BuilderstorageClass(StorageClass storageClass)The storage class used to store the job results.S3Location.Buildertagging(Map<String,String> tagging)The tag-set that is applied to the job results.S3Location.BuilderuserMetadata(Map<String,String> userMetadata)A map of metadata to store with the job results in Amazon S3.-
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
-
bucketName
S3Location.Builder bucketName(String bucketName)
The name of the Amazon S3 bucket where the job results are stored.
- Parameters:
bucketName- The name of the Amazon S3 bucket where the job results are stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefix
S3Location.Builder prefix(String prefix)
The prefix that is prepended to the results for this request.
- Parameters:
prefix- The prefix that is prepended to the results for this request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryption
S3Location.Builder encryption(Encryption encryption)
Contains information about the encryption used to store the job results in Amazon S3.
- Parameters:
encryption- Contains information about the encryption used to store the job results in Amazon S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryption
default S3Location.Builder encryption(Consumer<Encryption.Builder> encryption)
Contains information about the encryption used to store the job results in Amazon S3.
This is a convenience method that creates an instance of theEncryption.Builderavoiding the need to create one manually viaEncryption.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toencryption(Encryption).- Parameters:
encryption- a consumer that will call methods onEncryption.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
encryption(Encryption)
-
cannedACL
S3Location.Builder cannedACL(String cannedACL)
The canned access control list (ACL) to apply to the job results.
-
cannedACL
S3Location.Builder cannedACL(CannedACL cannedACL)
The canned access control list (ACL) to apply to the job results.
-
accessControlList
S3Location.Builder accessControlList(Collection<Grant> accessControlList)
A list of grants that control access to the staged results.
- Parameters:
accessControlList- A list of grants that control access to the staged results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accessControlList
S3Location.Builder accessControlList(Grant... accessControlList)
A list of grants that control access to the staged results.
- Parameters:
accessControlList- A list of grants that control access to the staged results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accessControlList
S3Location.Builder accessControlList(Consumer<Grant.Builder>... accessControlList)
A list of grants that control access to the staged results.
This is a convenience method that creates an instance of theGrant.Builderavoiding the need to create one manually viaGrant.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#accessControlList(List.) - Parameters:
accessControlList- a consumer that will call methods onGrant.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#accessControlList(java.util.Collection)
-
tagging
S3Location.Builder tagging(Map<String,String> tagging)
The tag-set that is applied to the job results.
- Parameters:
tagging- The tag-set that is applied to the job results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userMetadata
S3Location.Builder userMetadata(Map<String,String> userMetadata)
A map of metadata to store with the job results in Amazon S3.
- Parameters:
userMetadata- A map of metadata to store with the job results in Amazon S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
storageClass
S3Location.Builder storageClass(String storageClass)
The storage class used to store the job results.
- Parameters:
storageClass- The storage class used to store the job results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StorageClass,StorageClass
-
storageClass
S3Location.Builder storageClass(StorageClass storageClass)
The storage class used to store the job results.
- Parameters:
storageClass- The storage class used to store the job results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StorageClass,StorageClass
-
-