Module Values_1.PromptSource

Information about a prompt.

Sourcetype nonrec t = {
  1. promptARN : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the prompt.

    *)
  2. promptId : Values_0.PromptId.t option;
    (*

    A unique identifier for the prompt.

    *)
  3. name : Values_0.CommonNameLength127.t option;
    (*

    The name of the prompt.

    *)
  4. description : Values_0.PromptDescription.t option;
    (*

    The description of the prompt.

    *)
  5. tags : Values_0.TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

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

    The timestamp when this resource was last modified.

    *)
  7. lastModifiedRegion : Values_0.RegionName.t option;
    (*

    The Amazon Web Services Region where this resource was last modified.

    *)
}
Sourceval make : ?promptARN:??? -> ?promptId:??? -> ?name:??? -> ?description:??? -> ?tags:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of Values_0.ARN.t | `Timestamp of Values_0.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