Module Values_1.RouteTableAssociationSource

Describes an association between a route table and a subnet or gateway.

Sourcetype nonrec t = {
  1. main : Values_0.Boolean.t option;
    (*

    Indicates whether this is the main route table.

    *)
  2. routeTableAssociationId : Values_0.String_.t option;
    (*

    The ID of the association.

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

    The ID of the route table.

    *)
  4. subnetId : Values_0.String_.t option;
    (*

    The ID of the subnet. A subnet ID is not returned for an implicit association.

    *)
  5. gatewayId : Values_0.String_.t option;
    (*

    The ID of the internet gateway or virtual private gateway.

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

    The ID of a public IPv4 pool. A public IPv4 pool is a pool of IPv4 addresses that you've brought to Amazon Web Services with BYOIP.

    *)
  7. associationState : Values_0.RouteTableAssociationState.t option;
    (*

    The state of the association.

    *)
}
Sourceval make : ?main:??? -> ?routeTableAssociationId:??? -> ?routeTableId:??? -> ?subnetId:??? -> ?gatewayId:??? -> ?publicIpv4Pool:??? -> ?associationState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of Values_0.String_.t | `Structure of (string * [> `Enum of string | `String of string ]) 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