Interface FileSystemDataSource.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<FileSystemDataSource.Builder,FileSystemDataSource>
,SdkBuilder<FileSystemDataSource.Builder,FileSystemDataSource>
,SdkPojo
- Enclosing class:
- FileSystemDataSource
public static interface FileSystemDataSource.Builder extends SdkPojo, CopyableBuilder<FileSystemDataSource.Builder,FileSystemDataSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileSystemDataSource.Builder
directoryPath(String directoryPath)
The full path to the directory to associate with the channel.FileSystemDataSource.Builder
fileSystemAccessMode(String fileSystemAccessMode)
The access mode of the mount of the directory associated with the channel.FileSystemDataSource.Builder
fileSystemAccessMode(FileSystemAccessMode fileSystemAccessMode)
The access mode of the mount of the directory associated with the channel.FileSystemDataSource.Builder
fileSystemId(String fileSystemId)
The file system id.FileSystemDataSource.Builder
fileSystemType(String fileSystemType)
The file system type.FileSystemDataSource.Builder
fileSystemType(FileSystemType fileSystemType)
The file system type.-
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
-
fileSystemId
FileSystemDataSource.Builder fileSystemId(String fileSystemId)
The file system id.
- Parameters:
fileSystemId
- The file system id.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileSystemAccessMode
FileSystemDataSource.Builder fileSystemAccessMode(String fileSystemAccessMode)
The access mode of the mount of the directory associated with the channel. A directory can be mounted either in
ro
(read-only) orrw
(read-write) mode.- Parameters:
fileSystemAccessMode
- The access mode of the mount of the directory associated with the channel. A directory can be mounted either inro
(read-only) orrw
(read-write) mode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FileSystemAccessMode
,FileSystemAccessMode
-
fileSystemAccessMode
FileSystemDataSource.Builder fileSystemAccessMode(FileSystemAccessMode fileSystemAccessMode)
The access mode of the mount of the directory associated with the channel. A directory can be mounted either in
ro
(read-only) orrw
(read-write) mode.- Parameters:
fileSystemAccessMode
- The access mode of the mount of the directory associated with the channel. A directory can be mounted either inro
(read-only) orrw
(read-write) mode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FileSystemAccessMode
,FileSystemAccessMode
-
fileSystemType
FileSystemDataSource.Builder fileSystemType(String fileSystemType)
The file system type.
- Parameters:
fileSystemType
- The file system type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FileSystemType
,FileSystemType
-
fileSystemType
FileSystemDataSource.Builder fileSystemType(FileSystemType fileSystemType)
The file system type.
- Parameters:
fileSystemType
- The file system type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FileSystemType
,FileSystemType
-
directoryPath
FileSystemDataSource.Builder directoryPath(String directoryPath)
The full path to the directory to associate with the channel.
- Parameters:
directoryPath
- The full path to the directory to associate with the channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-