We are excited to announce the developer preview of our new API documentation for AWS SDK for JavaScript v3. Please follow instructions on the landing page to leave us your feedback.
Protected
Removes the association between a MAC Security (MACsec) security key and an Direct Connect dedicated connection.
Use a bare-bones client and the command you need to make an API call.
import { DirectConnectClient, DisassociateMacSecKeyCommand } from "@aws-sdk/client-direct-connect"; // ES Modules import// const { DirectConnectClient, DisassociateMacSecKeyCommand } = require("@aws-sdk/client-direct-connect"); // CommonJS importconst client = new DirectConnectClient(config);const input = { // DisassociateMacSecKeyRequest connectionId: "STRING_VALUE", // required secretARN: "STRING_VALUE", // required};const command = new DisassociateMacSecKeyCommand(input);const response = await client.send(command);// { // DisassociateMacSecKeyResponse// connectionId: "STRING_VALUE",// macSecKeys: [ // MacSecKeyList// { // MacSecKey// secretARN: "STRING_VALUE",// ckn: "STRING_VALUE",// state: "STRING_VALUE",// startOn: "STRING_VALUE",// },// ],// };
DisassociateMacSecKeyCommandInput
DisassociateMacSecKeyCommandOutput
input
response
config
DirectConnectClientException (client fault)
One or more parameters are not valid.
DirectConnectServerException (server fault)
A server-side error occurred.
DirectConnectServiceException
Base exception class for all service exceptions from DirectConnect service.
Readonly
Static
Removes the association between a MAC Security (MACsec) security key and an Direct Connect dedicated connection.
Example
Use a bare-bones client and the command you need to make an API call.
Param
DisassociateMacSecKeyCommandInput
Returns
DisassociateMacSecKeyCommandOutput
See
input
shape.response
shape.config
shape.Throws
DirectConnectClientException (client fault)
One or more parameters are not valid.
Throws
DirectConnectServerException (server fault)
A server-side error occurred.
Throws
DirectConnectServiceException
Base exception class for all service exceptions from DirectConnect service.