Module Values.TestGridVpcConfigSource

The VPC security groups and subnets that are attached to a project.

Sourcetype nonrec t = {
  1. securityGroupIds : SecurityGroupIds.t;
    (*

    A list of VPC security group IDs in your Amazon VPC.

    *)
  2. subnetIds : SubnetIds.t;
    (*

    A list of VPC subnet IDs in your Amazon VPC.

    *)
  3. vpcId : NonEmptyString.t;
    (*

    The ID of the Amazon VPC.

    *)
}
Sourceval context_ : string
Sourceval make : securityGroupIds:SecurityGroupIds.t -> subnetIds:SubnetIds.t -> vpcId:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.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