Module Values.VpcConfigSource

Information about the VPC configuration that CodeBuild accesses.

Sourcetype nonrec t = {
  1. vpcId : NonEmptyString.t option;
    (*

    The ID of the Amazon VPC.

    *)
  2. subnets : Subnets.t option;
    (*

    A list of one or more subnet IDs in your Amazon VPC.

    *)
  3. securityGroupIds : SecurityGroupIds.t option;
    (*

    A list of one or more security groups IDs in your Amazon VPC.

    *)
}
Sourceval make : ?vpcId:??? -> ?subnets:??? -> ?securityGroupIds:??? -> 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