
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@aws-sdk/client-fms-node
Advanced tools
AWS Firewall Manager
This is the AWS Firewall Manager API Reference. This guide is for developers who need detailed information about the AWS Firewall Manager API actions, data types, and errors. For detailed information about AWS Firewall Manager features, see the AWS Firewall Manager Developer Guide.
To install the this package using NPM, simply type the following into a terminal window:
npm install @aws-sdk/client-fms-node
The AWS SDK is modulized by clients and commands in CommonJS modules. To send a request, you only need to import the client(FMSClient) and the commands you need, for example AssociateAdminAccountCommand:
//JavaScript
const { FMSClient } = require("@aws-sdk/client-fms-node/FMSClient");
const {
AssociateAdminAccountCommand
} = require("@aws-sdk/client-fms-node/commands/AssociateAdminAccountCommand");
//TypeScript
import { FMSClient } from "@aws-sdk/client-fms-node/FMSClient";
import { AssociateAdminAccountCommand } from "@aws-sdk/client-fms-node/commands/AssociateAdminAccountCommand";
To send a request, you:
send operation on client with command object as input.destroy() to close open connections.const fMS = new FMSClient({region: 'region'});
//clients can be shared by different commands
const params = {
AdminAccount: /**a string value*/,
};
const associateAdminAccountCommand = new AssociateAdminAccountCommand(params);
fMS.send(associateAdminAccountCommand).then(data => {
// do something
}).catch(error => {
// error handling
})
In addition to using promises, there are 2 other ways to send a request:
// async/await
try {
const data = await fMS.send(associateAdminAccountCommand);
// do something
} catch (error) {
// error handling
}
// callback
fMS.send(associateAdminAccountCommand, (err, data) => {
//do something
});
The SDK can also send requests using the simplified callback style from version 2 of the SDK.
import * as AWS from "@aws-sdk/@aws-sdk/client-fms-node/FMS";
const fMS = new AWS.FMS({ region: "region" });
fMS.associateAdminAccount(params, (err, data) => {
//do something
});
When the service returns an exception, the error will include the exception information, as well as response metadata (e.g. request id).
try {
const data = await fMS.send(associateAdminAccountCommand);
// do something
} catch (error) {
const metadata = error.$metadata;
console.log(
`requestId: ${metadata.requestId}
cfId: ${metadata.cfId}
extendedRequestId: ${metadata.extendedRequestId}`
);
/*
The keys within exceptions are also parsed. You can access them by specifying exception names:
if(error.name === 'SomeServiceException') {
const value = error.specialKeyInException;
}
*/
}
Please use these community resources for getting help. We use the GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them.
aws-sdk-jsThis client code is generated automatically. Any modifications will be overwritten the next time the `@aws-sdk/@aws-sdk/client-fms-node' package is updated. To contribute to SDK you can checkout our code generator package.
This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.
FAQs
Node SDK for Firewall Management Service
We found that @aws-sdk/client-fms-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.