Module Values.DescribeDirectConnectGatewayAttachmentsRequestSource

Lists the attachments between your Direct Connect gateways and virtual interfaces. You must specify a Direct Connect gateway, a virtual interface, or both. If you specify a Direct Connect gateway, the response contains all virtual interfaces attached to the Direct Connect gateway. If you specify a virtual interface, the response contains all Direct Connect gateways attached to the virtual interface. If you specify both, the response contains the attachment between the Direct Connect gateway and the virtual interface.

Sourcetype nonrec t = {
  1. directConnectGatewayId : DirectConnectGatewayId.t option;
    (*

    The ID of the Direct Connect gateway.

    *)
  2. virtualInterfaceId : VirtualInterfaceId.t option;
    (*

    The ID of the virtual interface.

    *)
  3. 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.

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

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

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