Interface DatastoreStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DatastoreStatistics.Builder,DatastoreStatistics>,SdkBuilder<DatastoreStatistics.Builder,DatastoreStatistics>,SdkPojo
- Enclosing class:
- DatastoreStatistics
public static interface DatastoreStatistics.Builder extends SdkPojo, CopyableBuilder<DatastoreStatistics.Builder,DatastoreStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DatastoreStatistics.Buildersize(Consumer<EstimatedResourceSize.Builder> size)The estimated size of the data store.DatastoreStatistics.Buildersize(EstimatedResourceSize size)The estimated size of the data store.-
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
-
size
DatastoreStatistics.Builder size(EstimatedResourceSize size)
The estimated size of the data store.
- Parameters:
size- The estimated size of the data store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
size
default DatastoreStatistics.Builder size(Consumer<EstimatedResourceSize.Builder> size)
The estimated size of the data store.
This is a convenience method that creates an instance of theEstimatedResourceSize.Builderavoiding the need to create one manually viaEstimatedResourceSize.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosize(EstimatedResourceSize).- Parameters:
size- a consumer that will call methods onEstimatedResourceSize.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
size(EstimatedResourceSize)
-
-