Interface S3Configuration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3Configuration.Builder,S3Configuration>,SdkBuilder<S3Configuration.Builder,S3Configuration>,SdkPojo
- Enclosing class:
- S3Configuration
public static interface S3Configuration.Builder extends SdkPojo, CopyableBuilder<S3Configuration.Builder,S3Configuration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3Configuration.BuilderbucketARN(String bucketARN)ARN of the S3 bucket that contains the data.S3Configuration.BuilderfileKey(String fileKey)The name of the object that contains the data.S3Configuration.BuilderroleARN(String roleARN)IAM ARN of the role used to access the data.-
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
-
roleARN
S3Configuration.Builder roleARN(String roleARN)
IAM ARN of the role used to access the data.
- Parameters:
roleARN- IAM ARN of the role used to access the data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bucketARN
S3Configuration.Builder bucketARN(String bucketARN)
ARN of the S3 bucket that contains the data.
- Parameters:
bucketARN- ARN of the S3 bucket that contains the data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileKey
S3Configuration.Builder fileKey(String fileKey)
The name of the object that contains the data.
- Parameters:
fileKey- The name of the object that contains the data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-