Values.CreateAgentSpaceInputSourceInput for creating a new AgentSpace.
type nonrec t = {name : AgentSpaceName.t;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.
*)kmsKeyArn : KmsKeyArn.t option;The ARN of the AWS Key Management Service (AWS KMS) customer managed key that's used to encrypt resources.
*)clientToken : CreateAgentSpaceInputClientTokenString.t option;Client-provided token to ensure request idempotency. When the same token is provided in subsequent calls, the same response is returned within a 8-hour window.
*)}val make :
?description:??? ->
?locale:??? ->
?kmsKeyArn:??? ->
?clientToken:??? ->
?tags:??? ->
name:AgentSpaceName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of AgentSpaceName.t ])
list ]