Module Values.CreateAgentSpaceInputSource

Input for creating a new AgentSpace.

Sourcetype nonrec t = {
  1. name : AgentSpaceName.t;
    (*

    The name of the AgentSpace.

    *)
  2. description : Description.t option;
    (*

    The description of the AgentSpace.

    *)
  3. locale : Locale.t option;
    (*

    The locale for the AgentSpace, which determines the language used in agent responses.

    *)
  4. kmsKeyArn : KmsKeyArn.t option;
    (*

    The ARN of the AWS Key Management Service (AWS KMS) customer managed key that's used to encrypt resources.

    *)
  5. 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.

    *)
  6. tags : Tags.t option;
    (*

    Tags to add to the AgentSpace at creation time.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?locale:??? -> ?kmsKeyArn:??? -> ?clientToken:??? -> ?tags:??? -> name:AgentSpaceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AgentSpaceName.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