Interface DiskInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DiskInfo.Builder,DiskInfo>,SdkBuilder<DiskInfo.Builder,DiskInfo>,SdkPojo
- Enclosing class:
- DiskInfo
public static interface DiskInfo.Builder extends SdkPojo, CopyableBuilder<DiskInfo.Builder,DiskInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DiskInfo.BuilderisSystemDisk(Boolean isSystemDisk)A Boolean value indicating whether this disk is a system disk (has an operating system loaded on it).DiskInfo.Buildername(String name)The disk name.DiskInfo.Builderpath(String path)The disk path.DiskInfo.BuildersizeInGb(Integer sizeInGb)The size of the disk in GB (32).-
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
DiskInfo.Builder name(String name)
The disk name.
- Parameters:
name- The disk name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
path
DiskInfo.Builder path(String path)
The disk path.
- Parameters:
path- The disk path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sizeInGb
DiskInfo.Builder sizeInGb(Integer sizeInGb)
The size of the disk in GB (
32).- Parameters:
sizeInGb- The size of the disk in GB (32).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isSystemDisk
DiskInfo.Builder isSystemDisk(Boolean isSystemDisk)
A Boolean value indicating whether this disk is a system disk (has an operating system loaded on it).
- Parameters:
isSystemDisk- A Boolean value indicating whether this disk is a system disk (has an operating system loaded on it).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-