Module Values.BuiltInIntentSummarySource

Provides summary information about a built-in intent for the ListBuiltInIntents operation.

Sourcetype nonrec t = {
  1. intentSignature : IntentSignature.t option;
    (*

    The signature of the built-in intent. Use this to specify the parent intent of a derived intent.

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

    The description of the intent.

    *)
}
Sourceval make : ?intentSignature:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IntentSignature.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