Interface Capacity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Capacity.Builder,Capacity>,SdkBuilder<Capacity.Builder,Capacity>,SdkPojo
- Enclosing class:
- Capacity
public static interface Capacity.Builder extends SdkPojo, CopyableBuilder<Capacity.Builder,Capacity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Capacity.Builderavailable(Long available)The amount of capacity available for use on the device.Capacity.Buildername(String name)The name of the type of capacity, such as memory.Capacity.Buildertotal(Long total)The total capacity on the device.Capacity.Builderunit(String unit)The unit of measure for the type of capacity.Capacity.Builderused(Long used)The amount of capacity used on the device.-
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
-
available
Capacity.Builder available(Long available)
The amount of capacity available for use on the device.
- Parameters:
available- The amount of capacity available for use on the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
Capacity.Builder name(String name)
The name of the type of capacity, such as memory.
- Parameters:
name- The name of the type of capacity, such as memory.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
total
Capacity.Builder total(Long total)
The total capacity on the device.
- Parameters:
total- The total capacity on the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
unit
Capacity.Builder unit(String unit)
The unit of measure for the type of capacity.
- Parameters:
unit- The unit of measure for the type of capacity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
used
Capacity.Builder used(Long used)
The amount of capacity used on the device.
- Parameters:
used- The amount of capacity used on the device.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-