import { AccessAnalyzerClient, ListAnalyzersCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
// const { AccessAnalyzerClient, ListAnalyzersCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
const client = new AccessAnalyzerClient(config);
const command = new ListAnalyzersCommand(input);
const response = await client.send(command);
import { IoTWirelessClient, GetNetworkAnalyzerConfigurationCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
// const { IoTWirelessClient, GetNetworkAnalyzerConfigurationCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
const client = new IoTWirelessClient(config);
const command = new GetNetworkAnalyzerConfigurationCommand(input);
const response = await client.send(command);
import { IoTWirelessClient, UpdateNetworkAnalyzerConfigurationCommand } from "@aws-sdk/client-iot-wireless"; // ES Modules import
// const { IoTWirelessClient, UpdateNetworkAnalyzerConfigurationCommand } = require("@aws-sdk/client-iot-wireless"); // CommonJS import
const client = new IoTWirelessClient(config);
const command = new UpdateNetworkAnalyzerConfigurationCommand(input);
const response = await client.send(command);
import { IoTClient, ListOTAUpdatesCommand } from "@aws-sdk/client-iot"; // ES Modules import
// const { IoTClient, ListOTAUpdatesCommand } = require("@aws-sdk/client-iot"); // CommonJS import
const client = new IoTClient(config);
const command = new ListOTAUpdatesCommand(input);
const response = await client.send(command);
import { IoTClient, ListIndicesCommand } from "@aws-sdk/client-iot"; // ES Modules import
// const { IoTClient, ListIndicesCommand } = require("@aws-sdk/client-iot"); // CommonJS import
const client = new IoTClient(config);
const command = new ListIndicesCommand(input);
const response = await client.send(command);