Module Values.CreatePentestInputSource

Input for creating a new pentest.

Sourcetype nonrec t = {
  1. title : String_.t;
    (*

    The title of the pentest.

    *)
  2. agentSpaceId : String_.t;
    (*

    The unique identifier of the agent space to create the pentest in.

    *)
  3. assets : Assets.t option;
    (*

    The assets to include in the pentest, such as endpoints, actors, documents, and source code.

    *)
  4. excludeRiskTypes : RiskTypeList.t option;
    (*

    The list of risk types to exclude from the pentest.

    *)
  5. serviceRole : ServiceRole.t option;
    (*

    The IAM service role to use for the pentest.

    *)
  6. logConfig : CloudWatchLog.t option;
    (*

    The CloudWatch Logs configuration for the pentest.

    *)
  7. vpcConfig : VpcConfig.t option;
    (*

    The VPC configuration for the pentest.

    *)
  8. networkTrafficConfig : NetworkTrafficConfig.t option;
    (*

    The network traffic configuration for the pentest, including custom headers and traffic rules.

    *)
  9. codeRemediationStrategy : CodeRemediationStrategy.t option;
    (*

    The code remediation strategy for the pentest. Valid values are AUTOMATIC and DISABLED.

    *)
}
Sourceval context_ : string
Sourceval make : ?assets:??? -> ?excludeRiskTypes:??? -> ?serviceRole:??? -> ?logConfig:??? -> ?vpcConfig:??? -> ?networkTrafficConfig:??? -> ?codeRemediationStrategy:??? -> title:String_.t -> agentSpaceId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of String_.t | `Structure of (string * [> `List of [> `String of SecurityGroupArn.t | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list ] list | `String of String_.t ]) 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