Interface CustomFileSystem.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<CustomFileSystem.Builder,CustomFileSystem>
,SdkBuilder<CustomFileSystem.Builder,CustomFileSystem>
,SdkPojo
- Enclosing class:
- CustomFileSystem
public static interface CustomFileSystem.Builder extends SdkPojo, CopyableBuilder<CustomFileSystem.Builder,CustomFileSystem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CustomFileSystem.Builder
efsFileSystem(Consumer<EFSFileSystem.Builder> efsFileSystem)
A custom file system in Amazon EFS.CustomFileSystem.Builder
efsFileSystem(EFSFileSystem efsFileSystem)
A custom file system in Amazon EFS.default CustomFileSystem.Builder
fSxLustreFileSystem(Consumer<FSxLustreFileSystem.Builder> fSxLustreFileSystem)
A custom file system in Amazon FSx for Lustre.CustomFileSystem.Builder
fSxLustreFileSystem(FSxLustreFileSystem fSxLustreFileSystem)
A custom file system in Amazon FSx for Lustre.-
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
-
efsFileSystem
CustomFileSystem.Builder efsFileSystem(EFSFileSystem efsFileSystem)
A custom file system in Amazon EFS.
- Parameters:
efsFileSystem
- A custom file system in Amazon EFS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
efsFileSystem
default CustomFileSystem.Builder efsFileSystem(Consumer<EFSFileSystem.Builder> efsFileSystem)
A custom file system in Amazon EFS.
This is a convenience method that creates an instance of theEFSFileSystem.Builder
avoiding the need to create one manually viaEFSFileSystem.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toefsFileSystem(EFSFileSystem)
.- Parameters:
efsFileSystem
- a consumer that will call methods onEFSFileSystem.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
efsFileSystem(EFSFileSystem)
-
fSxLustreFileSystem
CustomFileSystem.Builder fSxLustreFileSystem(FSxLustreFileSystem fSxLustreFileSystem)
A custom file system in Amazon FSx for Lustre.
- Parameters:
fSxLustreFileSystem
- A custom file system in Amazon FSx for Lustre.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fSxLustreFileSystem
default CustomFileSystem.Builder fSxLustreFileSystem(Consumer<FSxLustreFileSystem.Builder> fSxLustreFileSystem)
A custom file system in Amazon FSx for Lustre.
This is a convenience method that creates an instance of theFSxLustreFileSystem.Builder
avoiding the need to create one manually viaFSxLustreFileSystem.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofSxLustreFileSystem(FSxLustreFileSystem)
.- Parameters:
fSxLustreFileSystem
- a consumer that will call methods onFSxLustreFileSystem.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
fSxLustreFileSystem(FSxLustreFileSystem)
-
-