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