Module Values.AwsDynamoDbTableGlobalSecondaryIndexSource

Information abut a global secondary index for the table.

Sourcetype nonrec t = {
  1. backfilling : Boolean.t option;
    (*

    Whether the index is currently backfilling.

    *)
  2. indexArn : NonEmptyString.t option;
    (*

    The ARN of the index.

    *)
  3. indexName : NonEmptyString.t option;
    (*

    The name of the index.

    *)
  4. indexSizeBytes : SizeBytes.t option;
    (*

    The total size in bytes of the index.

    *)
  5. indexStatus : NonEmptyString.t option;
    (*

    The current status of the index. ACTIVE CREATING DELETING UPDATING

    *)
  6. itemCount : Integer.t option;
    (*

    The number of items in the index.

    *)
  7. keySchema : AwsDynamoDbTableKeySchemaList.t option;
    (*

    The key schema for the index.

    *)
  8. projection : AwsDynamoDbTableProjection.t option;
    (*

    Attributes that are copied from the table into an index.

    *)
  9. provisionedThroughput : AwsDynamoDbTableProvisionedThroughput.t option;
    (*

    Information about the provisioned throughput settings for the indexes.

    *)
}
Sourceval make : ?backfilling:??? -> ?indexArn:??? -> ?indexName:??? -> ?indexSizeBytes:??? -> ?indexStatus:??? -> ?itemCount:??? -> ?keySchema:??? -> ?projection:??? -> ?provisionedThroughput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `Long of SizeBytes.t | `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t | `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.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