Module Values.VpcConfigSource

The VPC configuration for a pentest, specifying the VPC, security groups, and subnets to use during testing.

Sourcetype nonrec t = {
  1. vpcArn : VpcArn.t option;
    (*

    The Amazon Resource Name (ARN) of the VPC.

    *)
  2. securityGroupArns : SecurityGroupArns.t option;
    (*

    The Amazon Resource Names (ARNs) of the security groups for the VPC configuration.

    *)
  3. subnetArns : SubnetArns.t option;
    (*

    The Amazon Resource Names (ARNs) of the subnets for the VPC configuration.

    *)
}
Sourceval make : ?vpcArn:??? -> ?securityGroupArns:??? -> ?subnetArns:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SecurityGroupArn.t ] list | `String of VpcArn.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