Module Values.AwsDynamoDbTableLocalSecondaryIndexSource

Information about a local secondary index for a DynamoDB table.

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

    The ARN of the index.

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

    The name of the index.

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

    The complete key schema for the index.

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

    Attributes that are copied from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.

    *)
}
Sourceval make : ?indexArn:??? -> ?indexName:??? -> ?keySchema:??? -> ?projection:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `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