Module Values.UpdateGlobalSecondaryIndexActionSource

Represents the new provisioned throughput settings to be applied to a global secondary index.

Sourcetype nonrec t = {
  1. indexName : IndexName.t;
    (*

    The name of the global secondary index to be updated.

    *)
  2. 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.

    *)
  3. 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.

    *)
  4. warmThroughput : WarmThroughput.t option;
    (*

    Represents the warm throughput value of the new provisioned throughput settings to be applied to a global secondary index.

    *)
}
Sourceval context_ : string
Sourceval make : ?provisionedThroughput:??? -> ?onDemandThroughput:??? -> ?warmThroughput:??? -> indexName:IndexName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IndexName.t | `Structure of (string * [> `Long of PositiveLongObject.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t