Module Values.EC2DeleteRouteActionSource

Information about the DeleteRoute action in Amazon EC2.

Sourcetype nonrec t = {
  1. description : LengthBoundedString.t option;
    (*

    A description of the DeleteRoute action.

    *)
  2. destinationCidrBlock : CIDR.t option;
    (*

    Information about the IPv4 CIDR range for the route. The value you specify must match the CIDR for the route exactly.

    *)
  3. destinationPrefixListId : ResourceId.t option;
    (*

    Information about the ID of the prefix list for the route.

    *)
  4. destinationIpv6CidrBlock : CIDR.t option;
    (*

    Information about the IPv6 CIDR range for the route. The value you specify must match the CIDR for the route exactly.

    *)
  5. routeTableId : ActionTarget.t option;
    (*

    Information about the ID of the route table.

    *)
}
Sourceval make : ?description:??? -> ?destinationCidrBlock:??? -> ?destinationPrefixListId:??? -> ?destinationIpv6CidrBlock:??? -> ?routeTableId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LengthBoundedString.t | `Structure of (string * [> `String of ResourceId.t ]) list ]) 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