Module Values.DescribeVirtualInterfacesRequestSource

Displays all virtual interfaces for an Amazon Web Services account. Virtual interfaces deleted fewer than 15 minutes before you make the request are also returned. If you specify a connection ID, only the virtual interfaces associated with the connection are returned. If you specify a virtual interface ID, then only a single virtual interface is returned. A virtual interface (VLAN) transmits the traffic between the Direct Connect location and the customer network. If you're using an asn, the response includes ASN value in both the asn and asnLong fields. If you're using asnLong, the response returns a value of 0 (zero) for the asn attribute because it exceeds the highest ASN value of 2,147,483,647 that it can support

Sourcetype nonrec t = {
  1. connectionId : ConnectionId.t option;
    (*

    The ID of the connection.

    *)
  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 for the next page of results.

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