Interface FileMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FileMetadata.Builder,FileMetadata>,SdkBuilder<FileMetadata.Builder,FileMetadata>,SdkPojo
- Enclosing class:
- FileMetadata
public static interface FileMetadata.Builder extends SdkPojo, CopyableBuilder<FileMetadata.Builder,FileMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileMetadata.BuilderabsolutePath(String absolutePath)The full path to the file to be added or updated, including the name of the file.FileMetadata.BuilderblobId(String blobId)The blob ID that contains the file information.FileMetadata.BuilderfileMode(String fileMode)The extrapolated file mode permissions for the file.FileMetadata.BuilderfileMode(FileModeTypeEnum fileMode)The extrapolated file mode permissions for 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
absolutePath
FileMetadata.Builder absolutePath(String absolutePath)
The full path to the file to be added or updated, including the name of the file.
- Parameters:
absolutePath- The full path to the file to be added or updated, including the name of the file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blobId
FileMetadata.Builder blobId(String blobId)
The blob ID that contains the file information.
- Parameters:
blobId- The blob ID that contains the file information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileMode
FileMetadata.Builder fileMode(String fileMode)
The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.
- Parameters:
fileMode- The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FileModeTypeEnum,FileModeTypeEnum
-
fileMode
FileMetadata.Builder fileMode(FileModeTypeEnum fileMode)
The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.
- Parameters:
fileMode- The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FileModeTypeEnum,FileModeTypeEnum
-
-