Module Values.VpcConfigurationSource

The VPC configuration provisioned for the host.

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

    The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.

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

    The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.

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

    The ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.

    *)
  4. tlsCertificate : TlsCertificate.t option;
    (*

    The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.

    *)
}
Sourceval context_ : string
Sourceval make : ?tlsCertificate:??? -> vpcId:VpcId.t -> subnetIds:SubnetIds.t -> securityGroupIds:SecurityGroupIds.t -> 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