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 Modifier and Type Method Description S3Location.BuilderbucketName(String bucketName)The name of an Amazon S3 bucket.S3Location.BuilderobjectKey(String objectKey)The key name of an object 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
bucketName
S3Location.Builder bucketName(String bucketName)
The name of an Amazon S3 bucket. For more information about buckets, see Creating, configuring, and working with Amazon S3 buckets in the Amazon Simple Storage Service User Guide.
- Parameters:
bucketName- The name of an Amazon S3 bucket. For more information about buckets, see Creating, configuring, and working with Amazon S3 buckets in the Amazon Simple Storage Service User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
objectKey
S3Location.Builder objectKey(String objectKey)
The key name of an object in Amazon S3. For more information about Amazon S3 objects and object keys, see Uploading, downloading, and working with objects in Amazon S3 in the Amazon Simple Storage Service User Guide.
- Parameters:
objectKey- The key name of an object in Amazon S3. For more information about Amazon S3 objects and object keys, see Uploading, downloading, and working with objects in Amazon S3 in the Amazon Simple Storage Service User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-