Interface S3OutputLocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3OutputLocation.Builder,S3OutputLocation>,SdkBuilder<S3OutputLocation.Builder,S3OutputLocation>,SdkPojo
- Enclosing class:
- S3OutputLocation
public static interface S3OutputLocation.Builder extends SdkPojo, CopyableBuilder<S3OutputLocation.Builder,S3OutputLocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3OutputLocation.BuilderoutputS3BucketName(String outputS3BucketName)The name of the S3 bucket.S3OutputLocation.BuilderoutputS3KeyPrefix(String outputS3KeyPrefix)The S3 bucket subfolder.S3OutputLocation.BuilderoutputS3Region(String outputS3Region)The Amazon Web Services Region of the S3 bucket.-
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
-
outputS3Region
S3OutputLocation.Builder outputS3Region(String outputS3Region)
The Amazon Web Services Region of the S3 bucket.
- Parameters:
outputS3Region- The Amazon Web Services Region of the S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputS3BucketName
S3OutputLocation.Builder outputS3BucketName(String outputS3BucketName)
The name of the S3 bucket.
- Parameters:
outputS3BucketName- The name of the S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputS3KeyPrefix
S3OutputLocation.Builder outputS3KeyPrefix(String outputS3KeyPrefix)
The S3 bucket subfolder.
- Parameters:
outputS3KeyPrefix- The S3 bucket subfolder.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-