Module Values.CancelConnectionRequestSource

Cancels an existing connection between partners, terminating the partnership relationship.

Sourcetype nonrec t = {
  1. catalog : Catalog.t;
    (*

    The catalog identifier where the connection exists.

    *)
  2. identifier : ConnectionId.t;
    (*

    The unique identifier of the connection to cancel.

    *)
  3. connectionType : ConnectionType.t;
    (*

    The type of connection to cancel (e.g., reseller, distributor, technology partner).

    *)
  4. reason : CancelConnectionRequestReasonString.t;
    (*

    The reason for canceling the connection, providing context for the termination.

    *)
  5. clientToken : ClientToken.t;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : catalog:Catalog.t -> identifier:ConnectionId.t -> connectionType:ConnectionType.t -> reason:CancelConnectionRequestReasonString.t -> clientToken:ClientToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Catalog.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