Interface RecordsIngested.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RecordsIngested.Builder,RecordsIngested>,SdkBuilder<RecordsIngested.Builder,RecordsIngested>,SdkPojo
- Enclosing class:
- RecordsIngested
public static interface RecordsIngested.Builder extends SdkPojo, CopyableBuilder<RecordsIngested.Builder,RecordsIngested>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RecordsIngested.BuildermagneticStore(Integer magneticStore)Count of records ingested into the magnetic store.RecordsIngested.BuildermemoryStore(Integer memoryStore)Count of records ingested into the memory store.RecordsIngested.Buildertotal(Integer total)Total count of successfully ingested records.-
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
-
total
RecordsIngested.Builder total(Integer total)
Total count of successfully ingested records.
- Parameters:
total- Total count of successfully ingested records.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
memoryStore
RecordsIngested.Builder memoryStore(Integer memoryStore)
Count of records ingested into the memory store.
- Parameters:
memoryStore- Count of records ingested into the memory store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
magneticStore
RecordsIngested.Builder magneticStore(Integer magneticStore)
Count of records ingested into the magnetic store.
- Parameters:
magneticStore- Count of records ingested into the magnetic store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-