Module Values.KeyValueStoreSource

The key value store. Use this to separate data from function code, allowing you to update data without having to publish a new version of a function. The key value store holds keys and their corresponding values.

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

    The name of the key value store.

    *)
  2. id : String_.t option;
    (*

    The unique Id for the key value store.

    *)
  3. comment : String_.t option;
    (*

    A comment for the key value store.

    *)
  4. aRN : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the key value store.

    *)
  5. status : String_.t option;
    (*

    The status of the key value store.

    *)
  6. lastModifiedTime : Timestamp.t option;
    (*

    The last-modified time of the key value store.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?comment:??? -> ?aRN:??? -> ?status:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of Timestamp.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