Module Values.ExpectedRouteSource

Information about the expected route in the route table.

Sourcetype nonrec t = {
  1. ipV4Cidr : CIDR.t option;
    (*

    Information about the IPv4 CIDR block.

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

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

    *)
  3. ipV6Cidr : CIDR.t option;
    (*

    Information about the IPv6 CIDR block.

    *)
  4. contributingSubnets : ResourceIdList.t option;
    (*

    Information about the contributing subnets.

    *)
  5. allowedTargets : LengthBoundedStringList.t option;
    (*

    Information about the allowed targets.

    *)
  6. routeTableId : ResourceId.t option;
    (*

    Information about the route table ID.

    *)
}
Sourceval make : ?ipV4Cidr:??? -> ?prefixListId:??? -> ?ipV6Cidr:??? -> ?contributingSubnets:??? -> ?allowedTargets:??? -> ?routeTableId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ResourceId.t ] list | `String of CIDR.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