Back to Aws Sdk Js V3

@aws-sdk/client-securityhub

clients/client-securityhub/README.md

3.1043.062.7 KB
Original Source
<!-- generated file, do not edit directly -->

@aws-sdk/client-securityhub

Description

AWS SDK for JavaScript SecurityHub Client for Node.js, Browser and React Native.

<p>Security Hub CSPM provides you with a comprehensive view of your security state in Amazon Web Services and helps you assess your Amazon Web Services environment against security industry standards and best practices.</p> <p>Security Hub CSPM collects security data across Amazon Web Services accounts, Amazon Web Services services, and supported third-party products and helps you analyze your security trends and identify the highest priority security issues.</p> <p>To help you manage the security state of your organization, Security Hub CSPM supports multiple security standards. These include the Amazon Web Services Foundational Security Best Practices (FSBP) standard developed by Amazon Web Services, and external compliance frameworks such as the Center for Internet Security (CIS), the Payment Card Industry Data Security Standard (PCI DSS), and the National Institute of Standards and Technology (NIST). Each standard includes several security controls, each of which represents a security best practice. Security Hub CSPM runs checks against security controls and generates control findings to help you assess your compliance against security best practices.</p> <p>In addition to generating control findings, Security Hub CSPM also receives findings from other Amazon Web Services services, such as Amazon GuardDuty and Amazon Inspector, and supported third-party products. This gives you a single pane of glass into a variety of security-related issues. You can also send Security Hub CSPM findings to other Amazon Web Services services and supported third-party products.</p> <p>Security Hub CSPM offers automation features that help you triage and remediate security issues. For example, you can use automation rules to automatically update critical findings when a security check fails. You can also leverage the integration with Amazon EventBridge to trigger automatic responses to specific findings.</p> <p>This guide, the <i>Security Hub CSPM API Reference</i>, provides information about the Security Hub CSPM API. This includes supported resources, HTTP methods, parameters, and schemas. If you're new to Security Hub CSPM, you might find it helpful to also review the <a href="https://docs.aws.amazon.com/securityhub/latest/userguide/what-is-securityhub.html"> <i>Security Hub CSPM User Guide</i> </a>. The user guide explains key concepts and provides procedures that demonstrate how to use Security Hub CSPM features. It also provides information about topics such as integrating Security Hub CSPM with other Amazon Web Services services.</p> <p>In addition to interacting with Security Hub CSPM by making calls to the Security Hub CSPM API, you can use a current version of an Amazon Web Services command line tool or SDK. Amazon Web Services provides tools and SDKs that consist of libraries and sample code for various languages and platforms, such as PowerShell, Java, Go, Python, C++, and .NET. These tools and SDKs provide convenient, programmatic access to Security Hub CSPM and other Amazon Web Services services . They also handle tasks such as signing requests, managing errors, and retrying requests automatically. For information about installing and using the Amazon Web Services tools and SDKs, see <a href="http://aws.amazon.com/developer/tools/">Tools to Build on Amazon Web Services</a>.</p> <p>With the exception of operations that are related to central configuration, Security Hub CSPM API requests are executed only in the Amazon Web Services Region that is currently active or in the specific Amazon Web Services Region that you specify in your request. Any configuration or settings change that results from the operation is applied only to that Region. To make the same change in other Regions, call the same API operation in each Region in which you want to apply the change. When you use central configuration, API requests for enabling Security Hub CSPM, standards, and controls are executed in the home Region and all linked Regions. For a list of central configuration operations, see the <a href="https://docs.aws.amazon.com/securityhub/latest/userguide/central-configuration-intro.html#central-configuration-concepts">Central configuration terms and concepts</a> section of the <i>Security Hub CSPM User Guide</i>.</p> <p>The following throttling limits apply to Security Hub CSPM API operations.</p> <ul> <li> <p> <code>BatchEnableStandards</code> - <code>RateLimit</code> of 1 request per second. <code>BurstLimit</code> of 1 request per second.</p> </li> <li> <p> <code>GetFindings</code> - <code>RateLimit</code> of 3 requests per second. <code>BurstLimit</code> of 6 requests per second.</p> </li> <li> <p> <code>BatchImportFindings</code> - <code>RateLimit</code> of 10 requests per second. <code>BurstLimit</code> of 30 requests per second.</p> </li> <li> <p> <code>BatchUpdateFindings</code> - <code>RateLimit</code> of 10 requests per second. <code>BurstLimit</code> of 30 requests per second.</p> </li> <li> <p> <code>UpdateStandardsControl</code> - <code>RateLimit</code> of 1 request per second. <code>BurstLimit</code> of 5 requests per second.</p> </li> <li> <p>All other operations - <code>RateLimit</code> of 10 requests per second. <code>BurstLimit</code> of 30 requests per second.</p> </li> </ul>

Installing

To install this package, use the CLI of your favorite package manager:

  • npm install @aws-sdk/client-securityhub
  • yarn add @aws-sdk/client-securityhub
  • pnpm add @aws-sdk/client-securityhub

Getting Started

Import

The AWS SDK is modulized by clients and commands. To send a request, you only need to import the SecurityHubClient and the commands you need, for example ListMembersCommand:

js
// ES5 example
const { SecurityHubClient, ListMembersCommand } = require("@aws-sdk/client-securityhub");
ts
// ES6+ example
import { SecurityHubClient, ListMembersCommand } from "@aws-sdk/client-securityhub";

Usage

To send a request:

  • Instantiate a client with configuration (e.g. credentials, region).
  • Instantiate a command with input parameters.
  • Call the send operation on the client, providing the command object as input.
js
const client = new SecurityHubClient({ region: "REGION" });

const params = { /** input parameters */ };
const command = new ListMembersCommand(params);

Async/await

We recommend using the await operator to wait for the promise returned by send operation as follows:

js
// async/await.
try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  // error handling.
} finally {
  // finally.
}

Promises

You can also use Promise chaining.

js
client
  .send(command)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  })
  .finally(() => {
    // finally.
  });

Aggregated client

The aggregated client class is exported from the same package, but without the "Client" suffix.

SecurityHub extends SecurityHubClient and additionally supports all operations, waiters, and paginators as methods. This style may be familiar to you from the AWS SDK for JavaScript v2.

If you are bundling the AWS SDK, we recommend using only the bare-bones client (SecurityHubClient). More details are in the blog post on modular packages in AWS SDK for JavaScript.

ts
import { SecurityHub } from "@aws-sdk/client-securityhub";

const client = new SecurityHub({ region: "REGION" });

// async/await.
try {
  const data = await client.listMembers(params);
  // process data.
} catch (error) {
  // error handling.
}

// Promises.
client
  .listMembers(params)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  });

// callbacks (not recommended).
client.listMembers(params, (err, data) => {
  // process err and data.
});

Troubleshooting

When the service returns an exception, the error will include the exception information, as well as response metadata (e.g. request id).

js
try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  const { requestId, cfId, extendedRequestId } = error.$metadata;
  console.log({ requestId, cfId, extendedRequestId });
  /**
   * The keys within exceptions are also parsed.
   * You can access them by specifying exception names:
   * if (error.name === 'SomeServiceException') {
   *     const value = error.specialKeyInException;
   * }
   */
}

See also docs/ERROR_HANDLING.

Getting Help

Please use these community resources for getting help. We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.

To test your universal JavaScript code in Node.js, browser and react-native environments, visit our code samples repo.

Contributing

This client code is generated automatically. Any modifications will be overwritten the next time the @aws-sdk/client-securityhub package is updated. To contribute to client you can check our generate clients scripts.

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.

Client Commands (Operations List)

<details> <summary> AcceptAdministratorInvitation </summary>

Command API Reference / Input / Output

</details> <details> <summary> AcceptInvitation </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchDeleteAutomationRules </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchDisableStandards </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchEnableStandards </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchGetAutomationRules </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchGetConfigurationPolicyAssociations </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchGetSecurityControls </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchGetStandardsControlAssociations </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchImportFindings </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchUpdateAutomationRules </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchUpdateFindings </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchUpdateFindingsV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchUpdateStandardsControlAssociations </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateActionTarget </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateAggregatorV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateAutomationRule </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateAutomationRuleV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateConfigurationPolicy </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateConnectorV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateFindingAggregator </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateInsight </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateMembers </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateTicketV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeclineInvitations </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteActionTarget </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteAggregatorV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteAutomationRuleV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteConfigurationPolicy </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteConnectorV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteFindingAggregator </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteInsight </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteInvitations </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteMembers </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeActionTargets </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeHub </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeOrganizationConfiguration </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeProducts </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeProductsV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeSecurityHubV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeStandards </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeStandardsControls </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisableImportFindingsForProduct </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisableOrganizationAdminAccount </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisableSecurityHub </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisableSecurityHubV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateFromAdministratorAccount </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateFromMasterAccount </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateMembers </summary>

Command API Reference / Input / Output

</details> <details> <summary> EnableImportFindingsForProduct </summary>

Command API Reference / Input / Output

</details> <details> <summary> EnableOrganizationAdminAccount </summary>

Command API Reference / Input / Output

</details> <details> <summary> EnableSecurityHub </summary>

Command API Reference / Input / Output

</details> <details> <summary> EnableSecurityHubV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetAdministratorAccount </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetAggregatorV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetAutomationRuleV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetConfigurationPolicy </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetConfigurationPolicyAssociation </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetConnectorV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetEnabledStandards </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetFindingAggregator </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetFindingHistory </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetFindings </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetFindingStatisticsV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetFindingsTrendsV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetFindingsV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetInsightResults </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetInsights </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetInvitationsCount </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetMasterAccount </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetMembers </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetResourcesStatisticsV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetResourcesTrendsV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetResourcesV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetSecurityControlDefinition </summary>

Command API Reference / Input / Output

</details> <details> <summary> InviteMembers </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListAggregatorsV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListAutomationRules </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListAutomationRulesV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListConfigurationPolicies </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListConfigurationPolicyAssociations </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListConnectorsV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListEnabledProductsForImport </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListFindingAggregators </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListInvitations </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListMembers </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListOrganizationAdminAccounts </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListSecurityControlDefinitions </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListStandardsControlAssociations </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListTagsForResource </summary>

Command API Reference / Input / Output

</details> <details> <summary> RegisterConnectorV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartConfigurationPolicyAssociation </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartConfigurationPolicyDisassociation </summary>

Command API Reference / Input / Output

</details> <details> <summary> TagResource </summary>

Command API Reference / Input / Output

</details> <details> <summary> UntagResource </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateActionTarget </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateAggregatorV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateAutomationRuleV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateConfigurationPolicy </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateConnectorV2 </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateFindingAggregator </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateFindings </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateInsight </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateOrganizationConfiguration </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateSecurityControl </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateSecurityHubConfiguration </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateStandardsControl </summary>

Command API Reference / Input / Output

</details>