Module Values_0.VpcDestinationSummarySource

The summary of a virtual private cloud (VPC) destination.

Sourcetype nonrec t = {
  1. subnetIds : SubnetIdList.t option;
    (*

    The subnet IDs of the VPC destination.

    *)
  2. securityGroups : SecurityGroupList.t option;
    (*

    The security groups of the VPC destination.

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

    The ID of the VPC.

    *)
  4. roleArn : AwsArn.t option;
    (*

    The ARN of a role that has permission to create and attach to elastic network interfaces (ENIs).

    *)
}
Sourceval make : ?subnetIds:??? -> ?securityGroups:??? -> ?vpcId:??? -> ?roleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SubnetId.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