Module Values.VpcConfigSource

Contains the VPC configuration data necessary to interface with AWS Device Farm's services.

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

    An array of one or more security groups IDs in your Amazon VPC.

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

    An array of one or more subnet IDs in your Amazon VPC.

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

    The ID of the Amazon VPC.

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