Back to Aws Sdk Js V3

@aws-sdk/client-guardduty

clients/client-guardduty/README.md

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

@aws-sdk/client-guardduty

Description

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

<p>Amazon GuardDuty is a continuous security monitoring service that analyzes and processes the following foundational data sources - VPC flow logs, Amazon Web Services CloudTrail management event logs, CloudTrail S3 data event logs, EKS audit logs, DNS logs, Amazon EBS volume data, runtime activity belonging to container workloads, such as Amazon EKS, Amazon ECS (including Amazon Web Services Fargate), and Amazon EC2 instances. It uses threat intelligence feeds, such as lists of malicious IPs and domains, and machine learning to identify unexpected, potentially unauthorized, and malicious activity within your Amazon Web Services environment. This can include issues like escalations of privileges, uses of exposed credentials, or communication with malicious IPs, domains, or presence of malware on your Amazon EC2 instances and container workloads. For example, GuardDuty can detect compromised EC2 instances and container workloads serving malware, or mining bitcoin. </p> <p>GuardDuty also monitors Amazon Web Services account access behavior for signs of compromise, such as unauthorized infrastructure deployments like EC2 instances deployed in a Region that has never been used, or unusual API calls like a password policy change to reduce password strength. </p> <p>GuardDuty informs you about the status of your Amazon Web Services environment by producing security findings that you can view in the GuardDuty console or through Amazon EventBridge. For more information, see the <i> <a href="https://docs.aws.amazon.com/guardduty/latest/ug/what-is-guardduty.html">Amazon GuardDuty User Guide</a> </i>. </p>

Installing

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

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

Getting Started

Import

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

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

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 GuardDutyClient({ region: "REGION" });

const params = { /** input parameters */ };
const command = new ListDetectorsCommand(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.

GuardDuty extends GuardDutyClient 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 (GuardDutyClient). More details are in the blog post on modular packages in AWS SDK for JavaScript.

ts
import { GuardDuty } from "@aws-sdk/client-guardduty";

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

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

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

// callbacks (not recommended).
client.listDetectors(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-guardduty 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> ArchiveFindings </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateDetector </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateFilter </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateIPSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateMalwareProtectionPlan </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> CreatePublishingDestination </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateSampleFindings </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateThreatEntitySet </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateThreatIntelSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateTrustedEntitySet </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> DeleteDetector </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteFilter </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> DeleteIPSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteMalwareProtectionPlan </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> DeletePublishingDestination </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteThreatEntitySet </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteThreatIntelSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteTrustedEntitySet </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeMalwareScans </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> DescribePublishingDestination </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisableOrganizationAdminAccount </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> EnableOrganizationAdminAccount </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> GetCoverageStatistics </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetDetector </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetFilter </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> GetFindingsStatistics </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> GetIPSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetMalwareProtectionPlan </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetMalwareScan </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetMalwareScanSettings </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> GetMemberDetectors </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> GetOrganizationStatistics </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetRemainingFreeTrialDays </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetThreatEntitySet </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetThreatIntelSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetTrustedEntitySet </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetUsageStatistics </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> ListCoverage </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListDetectors </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListFilters </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListFindings </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> ListIPSets </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListMalwareProtectionPlans </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListMalwareScans </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> ListPublishingDestinations </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> ListThreatEntitySets </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListThreatIntelSets </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListTrustedEntitySets </summary>

Command API Reference / Input / Output

</details> <details> <summary> SendObjectMalwareScan </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartMalwareScan </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartMonitoringMembers </summary>

Command API Reference / Input / Output

</details> <details> <summary> StopMonitoringMembers </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> UnarchiveFindings </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> UpdateDetector </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateFilter </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateFindingsFeedback </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateIPSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateMalwareProtectionPlan </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateMalwareScanSettings </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateMemberDetectors </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> UpdatePublishingDestination </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateThreatEntitySet </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateThreatIntelSet </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateTrustedEntitySet </summary>

Command API Reference / Input / Output

</details>