Module Values.UpdatePentestInputSource

Input for updating an existing pentest.

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

    The unique identifier of the pentest to update.

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

    The unique identifier of the agent space that contains the pentest.

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

    The updated title of the pentest.

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

    The updated assets for the pentest.

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

    The updated list of risk types to exclude from the pentest.

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

    The updated IAM service role for the pentest.

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

    The updated CloudWatch Logs configuration for the pentest.

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

    The updated VPC configuration for the pentest.

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

    The updated network traffic configuration for the pentest.

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

    The updated code remediation strategy for the pentest.

    *)
}
Sourceval context_ : string
Sourceval make : ?title:??? -> ?assets:??? -> ?excludeRiskTypes:??? -> ?serviceRole:??? -> ?logConfig:??? -> ?vpcConfig:??? -> ?networkTrafficConfig:??? -> ?codeRemediationStrategy:??? -> pentestId: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