Interface ThroughputConfigDescription.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ThroughputConfigDescription.Builder,ThroughputConfigDescription>
,SdkBuilder<ThroughputConfigDescription.Builder,ThroughputConfigDescription>
,SdkPojo
- Enclosing class:
- ThroughputConfigDescription
public static interface ThroughputConfigDescription.Builder extends SdkPojo, CopyableBuilder<ThroughputConfigDescription.Builder,ThroughputConfigDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ThroughputConfigDescription.Builder
provisionedReadCapacityUnits(Integer provisionedReadCapacityUnits)
For provisioned feature groups with online store enabled, this indicates the read throughput you are billed for and can consume without throttling.ThroughputConfigDescription.Builder
provisionedWriteCapacityUnits(Integer provisionedWriteCapacityUnits)
For provisioned feature groups, this indicates the write throughput you are billed for and can consume without throttling.ThroughputConfigDescription.Builder
throughputMode(String throughputMode)
The mode used for your feature group throughput:ON_DEMAND
orPROVISIONED
.ThroughputConfigDescription.Builder
throughputMode(ThroughputMode throughputMode)
The mode used for your feature group throughput:ON_DEMAND
orPROVISIONED
.-
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
-
throughputMode
ThroughputConfigDescription.Builder throughputMode(String throughputMode)
The mode used for your feature group throughput:
ON_DEMAND
orPROVISIONED
.- Parameters:
throughputMode
- The mode used for your feature group throughput:ON_DEMAND
orPROVISIONED
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ThroughputMode
,ThroughputMode
-
throughputMode
ThroughputConfigDescription.Builder throughputMode(ThroughputMode throughputMode)
The mode used for your feature group throughput:
ON_DEMAND
orPROVISIONED
.- Parameters:
throughputMode
- The mode used for your feature group throughput:ON_DEMAND
orPROVISIONED
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ThroughputMode
,ThroughputMode
-
provisionedReadCapacityUnits
ThroughputConfigDescription.Builder provisionedReadCapacityUnits(Integer provisionedReadCapacityUnits)
For provisioned feature groups with online store enabled, this indicates the read throughput you are billed for and can consume without throttling.
This field is not applicable for on-demand feature groups.
- Parameters:
provisionedReadCapacityUnits
- For provisioned feature groups with online store enabled, this indicates the read throughput you are billed for and can consume without throttling.This field is not applicable for on-demand feature groups.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
provisionedWriteCapacityUnits
ThroughputConfigDescription.Builder provisionedWriteCapacityUnits(Integer provisionedWriteCapacityUnits)
For provisioned feature groups, this indicates the write throughput you are billed for and can consume without throttling.
This field is not applicable for on-demand feature groups.
- Parameters:
provisionedWriteCapacityUnits
- For provisioned feature groups, this indicates the write throughput you are billed for and can consume without throttling.This field is not applicable for on-demand feature groups.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-