Module Values.AwsDynamoDbTableReplicaGlobalSecondaryIndexSource

Information about a global secondary index for a DynamoDB table replica.

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

    The name of the index.

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

    Replica-specific configuration for the provisioned throughput for the index.

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