Module Values.VpcConfigResponseSource

VPC configuration for workflow runs with computed VPC ID.

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

    List of security group IDs.

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

    List of subnet IDs.

    *)
  3. vpcId : VpcId.t option;
    (*

    VPC ID computed from the provided subnet IDs.

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