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.BuilderabsolutePath(String absolutePath)The fully qualified path to the file in the repository.File.BuilderblobId(String blobId)The blob ID that contains the file information.File.BuilderfileMode(String fileMode)The extrapolated file mode permissions for the file.File.BuilderfileMode(FileModeTypeEnum fileMode)The extrapolated file mode permissions for the file.File.BuilderrelativePath(String relativePath)The relative path of the file from the folder where the query originated.-
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
-
blobId
File.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.
-
absolutePath
File.Builder absolutePath(String absolutePath)
The fully qualified path to the file in the repository.
- Parameters:
absolutePath- The fully qualified path to the file in the repository.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
relativePath
File.Builder relativePath(String relativePath)
The relative path of the file from the folder where the query originated.
- Parameters:
relativePath- The relative path of the file from the folder where the query originated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileMode
File.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
File.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
-
-