Module Values.GetAttributesRequestSource

Returns all of the attributes associated with the specified item. Optionally, the attributes returned can be limited to one or more attributes by specifying an attribute name parameter. If the item does not exist on the replica that was accessed for this operation, an empty set is returned. The system does not return an error as it cannot guarantee the item does not exist on other replicas.

Sourcetype nonrec t = {
  1. domainName : String_.t;
    (*

    The name of the domain in which to perform the operation.

    *)
  2. itemName : String_.t;
    (*

    The name of the item.

    *)
  3. attributeNames : AttributeNameList.t option;
    (*

    The names of the attributes.

    *)
  4. consistentRead : Boolean.t option;
    (*

    Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.

    *)
}
Sourceval context_ : string
Sourceval make : ?attributeNames:??? -> ?consistentRead:??? -> domainName:String_.t -> itemName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list | `String of String_.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