Module Values.AgentSpaceSource

Represents a complete AgentSpace with all its properties, timestamps, encryption settings, and unique identifier.

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

    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. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp when the resource was created.

    *)
  5. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp when the resource was last updated.

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

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

    *)
  7. agentSpaceId : AgentSpaceId.t option;
    (*

    The unique identifier of the AgentSpace

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?locale:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?kmsKeyArn:??? -> ?agentSpaceId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AgentSpaceName.t | `Timestamp of SyntheticTimestamp_date_time.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