Values.PromptSummarySourceContains information about a prompt in your Prompt management tool. This data type is used in the following API operations: ListPrompts response
type nonrec t = {name : PromptName.t option;The name of the prompt.
*)description : PromptDescription.t option;The description of the prompt.
*)id : PromptId.t option;The unique identifier of the prompt.
*)arn : PromptArn.t option;The Amazon Resource Name (ARN) of the prompt or the prompt version (if you specified a version in the request).
*)version : Version.t option;The version of the prompt that this summary applies to.
*)createdAt : DateTimestamp.t option;The time at which the prompt was created.
*)updatedAt : DateTimestamp.t option;The time at which the prompt was last updated.
*)}val to_value :
t ->
[> `Structure of
(string * [> `String of PromptName.t | `Timestamp of DateTimestamp.t ])
list ]