Module Values.EC2CreateRouteActionSource

Information about the CreateRoute action in Amazon EC2.

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

    A description of CreateRoute action in Amazon EC2.

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

    Information about the IPv4 CIDR address block used for the destination match.

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

    Information about the ID of a prefix list used for the destination match.

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

    Information about the IPv6 CIDR block destination.

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

    Information about the ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.

    *)
  6. gatewayId : ActionTarget.t option;
    (*

    Information about the ID of an internet gateway or virtual private gateway attached to your VPC.

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

    Information about the ID of the route table for the route.

    *)
}
Sourceval make : ?description:??? -> ?destinationCidrBlock:??? -> ?destinationPrefixListId:??? -> ?destinationIpv6CidrBlock:??? -> ?vpcEndpointId:??? -> ?gatewayId:??? -> ?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