Module Values.IntentSummarySource

Summary information about an intent returned by the ListIntents operation.

Sourcetype nonrec t = {
  1. intentId : Id.t option;
    (*

    The unique identifier assigned to the intent. Use this ID to get detailed information about the intent with the DescribeIntent operation.

    *)
  2. intentName : Name.t option;
    (*

    The name of the intent.

    *)
  3. intentDisplayName : DisplayName.t option;
    (*

    The display name of the intent.

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

    The description of the intent.

    *)
  5. parentIntentSignature : IntentSignature.t option;
    (*

    If this intent is derived from a built-in intent, the name of the parent intent.

    *)
  6. inputContexts : InputContextsList.t option;
    (*

    The input contexts that must be active for this intent to be considered for recognition.

    *)
  7. outputContexts : OutputContextsList.t option;
    (*

    The output contexts that are activated when this intent is fulfilled.

    *)
  8. lastUpdatedDateTime : Timestamp.t option;
    (*

    The timestamp of the date and time that the intent was last updated.

    *)
}
Sourceval make : ?intentId:??? -> ?intentName:??? -> ?intentDisplayName:??? -> ?description:??? -> ?parentIntentSignature:??? -> ?inputContexts:??? -> ?outputContexts:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of ContextTimeToLiveInSeconds.t | `String of Name.t ]) list ] list | `String of Id.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