Module Values.DescribeDirectConnectGatewayAssociationsRequestSource

Lists the associations between your Direct Connect gateways and virtual private gateways and transit gateways. You must specify one of the following: A Direct Connect gateway The response contains all virtual private gateways and transit gateways associated with the Direct Connect gateway. A virtual private gateway The response contains the Direct Connect gateway. A transit gateway The response contains the Direct Connect gateway. A Direct Connect gateway and a virtual private gateway The response contains the association between the Direct Connect gateway and virtual private gateway. A Direct Connect gateway and a transit gateway The response contains the association between the Direct Connect gateway and transit gateway. A Direct Connect gateway and a virtual private gateway The response contains the association between the Direct Connect gateway and virtual private gateway. A Direct Connect gateway association to a Cloud WAN core network The response contains the Cloud WAN core network ID that the Direct Connect gateway is associated to.

Sourcetype nonrec t = {
  1. associationId : DirectConnectGatewayAssociationId.t option;
    (*

    The ID of the Direct Connect gateway association.

    *)
  2. associatedGatewayId : AssociatedGatewayId.t option;
    (*

    The ID of the associated gateway.

    *)
  3. directConnectGatewayId : DirectConnectGatewayId.t option;
    (*

    The ID of the Direct Connect gateway.

    *)
  4. maxResults : MaxResultSetSize.t option;
    (*

    The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. If MaxResults is given a value larger than 100, only 100 results are returned.

    *)
  5. nextToken : PaginationToken.t option;
    (*

    The token provided in the previous call to retrieve the next page.

    *)
  6. virtualGatewayId : VirtualGatewayId.t option;
    (*

    The ID of the virtual private gateway or transit gateway.

    *)
}
Sourceval make : ?associationId:??? -> ?associatedGatewayId:??? -> ?directConnectGatewayId:??? -> ?maxResults:??? -> ?nextToken:??? -> ?virtualGatewayId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResultSetSize.t | `String of DirectConnectGatewayAssociationId.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