Interface File.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<File.Builder,File>,SdkBuilder<File.Builder,File>,SdkPojo
- Enclosing class:
- File
public static interface File.Builder extends SdkPojo, CopyableBuilder<File.Builder,File>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description File.Builderbucket(String bucket)The name of the Amazon S3 bucket from which data is imported.File.Builderkey(String key)The key of the Amazon S3 object that contains your data.File.BuilderversionId(String versionId)The version ID to identify a specific version of the Amazon S3 object that contains your 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, sdkFields
-
-
-
-
Method Detail
-
bucket
File.Builder bucket(String bucket)
The name of the Amazon S3 bucket from which data is imported.
- Parameters:
bucket- The name of the Amazon S3 bucket from which data is imported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
key
File.Builder key(String key)
The key of the Amazon S3 object that contains your data. Each object has a key that is a unique identifier. Each object has exactly one key.
- Parameters:
key- The key of the Amazon S3 object that contains your data. Each object has a key that is a unique identifier. Each object has exactly one key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versionId
File.Builder versionId(String versionId)
The version ID to identify a specific version of the Amazon S3 object that contains your data.
- Parameters:
versionId- The version ID to identify a specific version of the Amazon S3 object that contains your data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-