Module Values.ReplicaGlobalSecondaryIndexDescriptionSource

Represents the properties of a replica global secondary index.

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

    The name of the global secondary index.

    *)
  2. provisionedThroughputOverride : ProvisionedThroughputOverride.t option;
    (*

    If not described, uses the source table GSI's read capacity settings.

    *)
  3. onDemandThroughputOverride : OnDemandThroughputOverride.t option;
    (*

    Overrides the maximum on-demand throughput for the specified global secondary index in the specified replica table.

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

    Represents the warm throughput of the global secondary index for this replica.

    *)
}
Sourceval make : ?indexName:??? -> ?provisionedThroughputOverride:??? -> ?onDemandThroughputOverride:??? -> ?warmThroughput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IndexName.t | `Structure of (string * [> `Enum 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