Values.VpcConfigSourceContains the VPC configuration data necessary to interface with AWS Device Farm's services.
type nonrec t = {securityGroupIds : VpcSecurityGroupIds.t;An array of one or more security groups IDs in your Amazon VPC.
*)subnetIds : VpcSubnetIds.t;An array of one or more subnet IDs in your Amazon VPC.
*)vpcId : NonEmptyString.t;The ID of the Amazon VPC.
*)}val make :
securityGroupIds:VpcSecurityGroupIds.t ->
subnetIds:VpcSubnetIds.t ->
vpcId:NonEmptyString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of SecurityGroupId.t ] list
| `String of NonEmptyString.t ])
list ]