Module Values.AgentSpaceSource

Represents an agent space, which is a dedicated workspace for securing a specific application. An agent space contains the configuration, resources, and settings needed for security testing.

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

    The unique identifier of the agent space.

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

    The name of the agent space.

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

    A 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.

    *)
}
Sourceval make : ?agentSpaceId:??? -> ?name:??? -> ?description:??? -> ?awsResources:??? -> ?targetDomainIds:??? -> ?codeReviewSettings:??? -> ?kmsKeyId:??? -> ?createdAt:??? -> ?updatedAt:??? -> 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 | `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