Module Values.VpcConfigurationDescriptionSource

Describes the parameters of a VPC used by the application.

Sourcetype nonrec t = {
  1. vpcConfigurationId : Id.t option;
    (*

    The ID of the VPC configuration.

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

    The ID of the associated VPC.

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

    The array of Subnet IDs used by the VPC configuration.

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

    The array of SecurityGroup IDs used by the VPC configuration.

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