Values.AgentSpaceSourceRepresents a complete AgentSpace with all its properties, timestamps, encryption settings, and unique identifier.
type nonrec t = {name : AgentSpaceName.t option;The name of the AgentSpace.
*)description : Description.t option;The description of the AgentSpace.
*)locale : Locale.t option;The locale for the AgentSpace, which determines the language used in agent responses.
*)createdAt : SyntheticTimestamp_date_time.t option;The timestamp when the resource was created.
*)updatedAt : SyntheticTimestamp_date_time.t option;The timestamp when the resource was last updated.
*)kmsKeyArn : KmsKeyArn.t option;The ARN of the AWS Key Management Service (AWS KMS) customer managed key that's used to encrypt resources.
*)agentSpaceId : AgentSpaceId.t option;The unique identifier of the AgentSpace
*)}val to_value :
t ->
[> `Structure of
(string
* [> `String of AgentSpaceName.t
| `Timestamp of SyntheticTimestamp_date_time.t ])
list ]