Module Values.CreateAgentSpaceOutputSource

Output for the CreateAgentSpace operation.

Sourcetype nonrec t = {
  1. agentSpaceId : AgentSpaceId.t option;
    (*

    The unique identifier of the created agent space.

    *)
  2. name : AgentName.t option;
    (*

    The name of the agent space.

    *)
  3. description : String_.t option;
    (*

    The description of the agent space.

    *)
  4. awsResources : AWSResources.t option;
    (*

    The AWS resources associated with the agent space.

    *)
  5. targetDomainIds : TargetDomainIdList.t option;
    (*

    The list of target domain identifiers associated with the agent space.

    *)
  6. codeReviewSettings : CodeReviewSettings.t option;
    (*

    The code review settings for the agent space.

    *)
  7. kmsKeyId : KmsKeyId.t option;
    (*

    The identifier of the AWS KMS key used to encrypt data in the agent space.

    *)
  8. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the agent space was created, in UTC format.

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

    The date and time the agent space was last updated, in UTC format.

    *)
}
Sourcetype nonrec error = [
  1. | `Unknown_operation_error of string * string option
]
Sourceval make : ?agentSpaceId:??? -> ?name:??? -> ?description:??? -> ?awsResources:??? -> ?targetDomainIds:??? -> ?codeReviewSettings:??? -> ?kmsKeyId:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval error_of_json : 'a -> Yojson.Safe.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_of_xml : 'a -> Awso.Xml.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of AgentSpaceId.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of LogGroupArn.t | `Structure of (string * [> `List of [> `String of SecurityGroupArn.t ] list | `String of VpcArn.t ]) list ] list ]) list | `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