Module Values.IntentMetadataSource

Provides information about an intent.

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

    The name of the intent.

    *)
  2. description : Description.t option;
    (*

    A description of the intent.

    *)
  3. lastUpdatedDate : Timestamp.t option;
    (*

    The date that the intent was updated. When you create an intent, the creation date and last updated date are the same.

    *)
  4. createdDate : Timestamp.t option;
    (*

    The date that the intent was created.

    *)
  5. version : Version.t option;
    (*

    The version of the intent.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?lastUpdatedDate:??? -> ?createdDate:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IntentName.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