Values.UpdateGlobalSecondaryIndexActionSourceRepresents the new provisioned throughput settings to be applied to a global secondary index.
type nonrec t = {indexName : IndexName.t;The name of the global secondary index to be updated.
*)provisionedThroughput : ProvisionedThroughput.t option;Represents the provisioned throughput settings for the specified global secondary index. For current minimum and maximum provisioned throughput values, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.
*)onDemandThroughput : OnDemandThroughput.t option;Updates the maximum number of read and write units for the specified global secondary index. If you use this parameter, you must specify MaxReadRequestUnits, MaxWriteRequestUnits, or both.
*)warmThroughput : WarmThroughput.t option;Represents the warm throughput value of the new provisioned throughput settings to be applied to a global secondary index.
*)}val make :
?provisionedThroughput:??? ->
?onDemandThroughput:??? ->
?warmThroughput:??? ->
indexName:IndexName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of IndexName.t
| `Structure of (string * [> `Long of PositiveLongObject.t ]) list ])
list ]