Updates the Direct Connect dedicated connection configuration.
You can update the following parameters for a connection:
The connection name
The connection's MAC Security (MACsec) encryption mode.
Use a bare-bones client and the command you need to make an API call.
import { DirectConnectClient, UpdateConnectionCommand } from "@aws-sdk/client-direct-connect"; // ES Modules import // const { DirectConnectClient, UpdateConnectionCommand } = require("@aws-sdk/client-direct-connect"); // CommonJS import const client = new DirectConnectClient(config); const command = new UpdateConnectionCommand(input); const response = await client.send(command);
UpdateConnectionCommandInput for command's input shape.
input
UpdateConnectionCommandOutput for command's response shape.
response
config for DirectConnectClient's config shape.
config
Updates the Direct Connect dedicated connection configuration.
You can update the following parameters for a connection:
The connection name
The connection's MAC Security (MACsec) encryption mode.
Use a bare-bones client and the command you need to make an API call.
import { DirectConnectClient, UpdateConnectionCommand } from "@aws-sdk/client-direct-connect"; // ES Modules import // const { DirectConnectClient, UpdateConnectionCommand } = require("@aws-sdk/client-direct-connect"); // CommonJS import const client = new DirectConnectClient(config); const command = new UpdateConnectionCommand(input); const response = await client.send(command);
UpdateConnectionCommandInput for command's
input
shape.UpdateConnectionCommandOutput for command's
response
shape.config for DirectConnectClient's
config
shape.