Module Values.PromptSummarySource

Contains information about a prompt in your Prompt management tool. This data type is used in the following API operations: ListPrompts response

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

    The name of the prompt.

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

    The description of the prompt.

    *)
  3. id : PromptId.t option;
    (*

    The unique identifier of the prompt.

    *)
  4. arn : PromptArn.t option;
    (*

    The Amazon Resource Name (ARN) of the prompt or the prompt version (if you specified a version in the request).

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

    The version of the prompt that this summary applies to.

    *)
  6. createdAt : DateTimestamp.t option;
    (*

    The time at which the prompt was created.

    *)
  7. updatedAt : DateTimestamp.t option;
    (*

    The time at which the prompt was last updated.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?id:??? -> ?arn:??? -> ?version:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PromptName.t | `Timestamp of DateTimestamp.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