Module Values.CreateAgentSpaceInputSource

Input for creating a new agent space.

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

    The name of the agent space.

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

    A description of the agent space.

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

    The AWS resources to associate with the agent space.

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

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

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

    The code review settings for the agent space.

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

    The identifier of the AWS KMS key to use for encrypting data in the agent space.

    *)
  7. tags : TagMap.t option;
    (*

    The tags to associate with the agent space.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?awsResources:??? -> ?targetDomainIds:??? -> ?codeReviewSettings:??? -> ?kmsKeyId:??? -> ?tags:??? -> name:AgentName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AgentName.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