Module Values.DescribeCustomerMetadataResponseSource

Get and view a list of customer agreements, along with their signed status and whether the customer is an NNIPartner, NNIPartnerV2, or a nonPartner.

Sourcetype nonrec t = {
  1. agreements : AgreementList.t option;
    (*

    The list of customer agreements.

    *)
  2. nniPartnerType : NniPartnerType.t option;
    (*

    The type of network-to-network interface (NNI) partner. The partner type will be one of the following: V1: This partner can only allocate 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, or 500Mbps subgigabit connections. V2: This partner can only allocate 1GB, 2GB, 5GB, or 10GB hosted connections. nonPartner: The customer is not a partner.

    *)
}
Sourcetype nonrec error = [
  1. | `DirectConnectClientException of DirectConnectClientException.t
  2. | `DirectConnectServerException of DirectConnectServerException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?agreements:??? -> ?nniPartnerType:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DirectConnectClientException of DirectConnectClientException.t | `DirectConnectServerException of DirectConnectServerException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DirectConnectClientException of DirectConnectClientException.t | `DirectConnectServerException of DirectConnectServerException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of AgreementName.t ]) list ] 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