Module Values_2.RouteTableSource

Describes a route table.

Sourcetype nonrec t = {
  1. associations : Values_1.RouteTableAssociationList.t option;
    (*

    The associations between the route table and your subnets or gateways.

    *)
  2. propagatingVgws : Values_1.PropagatingVgwList.t option;
    (*

    Any virtual private gateway (VGW) propagating routes.

    *)
  3. routeTableId : Values_0.String_.t option;
    (*

    The ID of the route table.

    *)
  4. routes : Values_1.RouteList.t option;
    (*

    The routes in the route table.

    *)
  5. tags : Values_0.TagList.t option;
    (*

    Any tags assigned to the route table.

    *)
  6. vpcId : Values_0.String_.t option;
    (*

    The ID of the VPC.

    *)
  7. ownerId : Values_0.String_.t option;
    (*

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

    *)
}
Sourceval make : ?associations:??? -> ?propagatingVgws:??? -> ?routeTableId:??? -> ?routes:??? -> ?tags:??? -> ?vpcId:??? -> ?ownerId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `String of Values_0.String_.t | `Structure of (string * [> `Enum of string | `String of string ]) list ]) list ] list | `String of Values_0.String_.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