Module Values.AssociatedGatewaySource

Information about the associated gateway.

Sourcetype nonrec t = {
  1. id : GatewayIdentifier.t option;
    (*

    The ID of the associated gateway.

    *)
  2. type_ : GatewayType.t option;
    (*

    The type of associated gateway.

    *)
  3. ownerAccount : OwnerAccount.t option;
    (*

    The ID of the Amazon Web Services account that owns the associated virtual private gateway or transit gateway.

    *)
  4. region : Region.t option;
    (*

    The Region where the associated gateway is located.

    *)
}
Sourceval make : ?id:??? -> ?type_:??? -> ?ownerAccount:??? -> ?region:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GatewayIdentifier.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