Module Values.UpdateAgentSpaceInputSource

Input for updating an agent space.

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

    The unique identifier of the agent space to update.

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

    The updated name of the agent space.

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

    The updated description of the agent space.

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

    The updated AWS resources to associate with the agent space.

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

    The updated list of target domain identifiers to associate with the agent space.

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

    The updated code review settings for the agent space.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?awsResources:??? -> ?targetDomainIds:??? -> ?codeReviewSettings:??? -> agentSpaceId:AgentSpaceId.t -> unit -> 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 ]) 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