Module Values.DisassociateMacSecKeyResponseSource

Removes the association between a MAC Security (MACsec) security key and a Direct Connect connection.

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

    The ID of the dedicated connection (dxcon-xxxx), interconnect (dxcon-xxxx), or LAG (dxlag-xxxx).

    *)
  2. macSecKeys : MacSecKeyList.t option;
    (*

    The MAC Security (MACsec) security keys no longer associated with the connection.

    *)
}
Sourcetype nonrec error = [
  1. | `DirectConnectClientException of DirectConnectClientException.t
  2. | `DirectConnectServerException of DirectConnectServerException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?connectionId:??? -> ?macSecKeys:??? -> 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 * [> `List of [> `Structure of (string * [> `String of SecretARN.t ]) list ] list | `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