Module Values.VpcConfigurationUpdateSource

Describes updates to the VPC configuration used by the application.

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

    Describes an update to the ID of the VPC configuration.

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

    Describes updates to the array of Subnet IDs used by the VPC configuration.

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

    Describes updates to the array of SecurityGroup IDs used by the VPC configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?subnetIdUpdates:??? -> ?securityGroupIdUpdates:??? -> vpcConfigurationId:Id.t -> 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