Values.AgentVersionSummarySourceContains details about a version of an agent.
type nonrec t = {agentName : Name.t option;The name of the agent to which the version belongs.
*)agentStatus : AgentStatus.t option;The status of the agent to which the version belongs.
*)agentVersion : Version.t option;The version of the agent.
*)createdAt : DateTimestamp.t option;The time at which the version was created.
*)updatedAt : DateTimestamp.t option;The time at which the version was last updated.
*)description : Description.t option;The description of the version of the agent.
*)guardrailConfiguration : GuardrailConfiguration.t option;Details about the guardrail associated with the agent.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of Name.t
| `Structure of (string * [> `String of GuardrailIdentifier.t ]) list
| `Timestamp of DateTimestamp.t ])
list ]