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.BuilderclusterCloudStorageUsed(Long clusterCloudStorageUsed)The amount of space in the cluster that's in cloud storage (for example, if you're using data tiering).Capacity.BuilderlogicalUsed(Long logicalUsed)The amount of space that's being used in a storage system resource without accounting for compression or deduplication.Capacity.Builderprovisioned(Long provisioned)The total amount of space available in a storage system resource.Capacity.Builderused(Long used)The amount of space that's being used in a storage system resource.-
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
-
used
Capacity.Builder used(Long used)
The amount of space that's being used in a storage system resource.
- Parameters:
used- The amount of space that's being used in a storage system resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
provisioned
Capacity.Builder provisioned(Long provisioned)
The total amount of space available in a storage system resource.
- Parameters:
provisioned- The total amount of space available in a storage system resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logicalUsed
Capacity.Builder logicalUsed(Long logicalUsed)
The amount of space that's being used in a storage system resource without accounting for compression or deduplication.
- Parameters:
logicalUsed- The amount of space that's being used in a storage system resource without accounting for compression or deduplication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clusterCloudStorageUsed
Capacity.Builder clusterCloudStorageUsed(Long clusterCloudStorageUsed)
The amount of space in the cluster that's in cloud storage (for example, if you're using data tiering).
- Parameters:
clusterCloudStorageUsed- The amount of space in the cluster that's in cloud storage (for example, if you're using data tiering).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-