Module Values.PutItemsRequestSource

Adds one or more items to an Items dataset. For more information see Importing items individually.

Sourcetype nonrec t = {
  1. datasetArn : Arn.t;
    (*

    The Amazon Resource Name (ARN) of the Items dataset you are adding the item or items to.

    *)
  2. items : ItemList.t;
    (*

    A list of item data.

    *)
}
Sourceval context_ : string
Sourceval make : datasetArn:Arn.t -> items:ItemList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of StringType.t ]) list ] list | `String of Arn.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