Module Values.AssociationSetDetailsSource

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

Sourcetype nonrec t = {
  1. associationState : AssociationStateDetails.t option;
    (*

    The state of the association between a route table and a subnet or gateway.

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

    The ID of the internet gateway or virtual private gateway.

    *)
  3. main : Boolean.t option;
    (*

    Indicates whether this is the main route table.

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

    The ID of the association.

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

    The ID of the route table.

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

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

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