Module Values.InvalidNetworkSettingsSource

One or more network settings specified in the request are invalid.

Sourcetype nonrec t = {
  1. message : ErrorMessage.t option;
    (*

    Error message explaining what's wrong with network settings.

    *)
  2. invalidSubnetId : SubnetId.t option;
    (*

    The subnet ID that is either invalid or not part of the VPC specified.

    *)
  3. invalidSecurityGroupId : SecurityGroupId.t option;
    (*

    The security group ID is either invalid or not part of the VPC specified.

    *)
  4. invalidRouteTableId : RouteTableId.t option;
    (*

    The route table ID is either invalid or not part of the VPC specified.

    *)
}
Sourceval make : ?message:??? -> ?invalidSubnetId:??? -> ?invalidSecurityGroupId:??? -> ?invalidRouteTableId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ErrorMessage.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