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