Interface StorageLocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StorageLocation.Builder,StorageLocation>,SdkBuilder<StorageLocation.Builder,StorageLocation>,SdkPojo
- Enclosing class:
- StorageLocation
@Mutable @NotThreadSafe public static interface StorageLocation.Builder extends SdkPojo, CopyableBuilder<StorageLocation.Builder,StorageLocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StorageLocation.Builderbucket(String bucket)The name of the S3 bucket.StorageLocation.Builderkey(String key)The key.-
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
-
bucket
StorageLocation.Builder bucket(String bucket)
The name of the S3 bucket.
- Parameters:
bucket- The name of the S3 bucket.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
key
StorageLocation.Builder key(String key)
The key.
- Parameters:
key- The key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-