Interface FileSystemLocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FileSystemLocation.Builder,FileSystemLocation>,SdkBuilder<FileSystemLocation.Builder,FileSystemLocation>,SdkPojo
- Enclosing class:
- FileSystemLocation
public static interface FileSystemLocation.Builder extends SdkPojo, CopyableBuilder<FileSystemLocation.Builder,FileSystemLocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileSystemLocation.Buildername(String name)The location name.FileSystemLocation.Builderpath(String path)The file path.FileSystemLocation.Buildertype(String type)The type of file.FileSystemLocation.Buildertype(FileSystemLocationType type)The type of 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
-
name
FileSystemLocation.Builder name(String name)
The location name.
- Parameters:
name- The location name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
path
FileSystemLocation.Builder path(String path)
The file path.
- Parameters:
path- The file path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
FileSystemLocation.Builder type(String type)
The type of file.
- Parameters:
type- The type of file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FileSystemLocationType,FileSystemLocationType
-
type
FileSystemLocation.Builder type(FileSystemLocationType type)
The type of file.
- Parameters:
type- The type of file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FileSystemLocationType,FileSystemLocationType
-
-