Module Values.AwsEc2RouteTableDetailsSource

Provides details about a route table for the specified VPC.

Sourcetype nonrec t = {
  1. associationSet : AssociationSetList.t option;
    (*

    The associations between a route table and one or more subnets or a gateway.

    *)
  2. ownerId : NonEmptyString.t option;
    (*

    The ID of the Amazon Web Services account that owns the route table.

    *)
  3. propagatingVgwSet : PropagatingVgwSetList.t option;
    (*

    Describes a virtual private gateway propagating route.

    *)
  4. routeTableId : NonEmptyString.t option;
    (*

    The ID of the route table.

    *)
  5. routeSet : RouteSetList.t option;
    (*

    The routes in the route table.

    *)
  6. vpcId : NonEmptyString.t option;
    (*

    The ID of the virtual private cloud (VPC).

    *)
}
Sourceval make : ?associationSet:??? -> ?ownerId:??? -> ?propagatingVgwSet:??? -> ?routeTableId:??? -> ?routeSet:??? -> ?vpcId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ] list | `String of NonEmptyString.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