Module Values.AwsDynamoDbTableProjectionSource

For global and local secondary indexes, identifies the attributes that are copied from the table into the index.

Sourcetype nonrec t = {
  1. nonKeyAttributes : StringList.t option;
    (*

    The nonkey attributes that are projected into the index. For each attribute, provide the attribute name.

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

    The types of attributes that are projected into the index. Valid values are as follows: ALL INCLUDE KEYS_ONLY

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