Back to Aws Sdk Js V3

@aws-sdk/client-frauddetector

clients/client-frauddetector/README.md

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

@aws-sdk/client-frauddetector

Description

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

<p>This is the Amazon Fraud Detector API Reference. This guide is for developers who need detailed information about Amazon Fraud Detector API actions, data types, and errors. For more information about Amazon Fraud Detector features, see the <a href="https://docs.aws.amazon.com/frauddetector/latest/ug/">Amazon Fraud Detector User Guide</a>.</p> <p>We provide the Query API as well as AWS software development kits (SDK) for Amazon Fraud Detector in Java and Python programming languages.</p> <p>The Amazon Fraud Detector Query API provides HTTPS requests that use the HTTP verb GET or POST and a Query parameter <code>Action</code>. AWS SDK provides libraries, sample code, tutorials, and other resources for software developers who prefer to build applications using language-specific APIs instead of submitting a request over HTTP or HTTPS. These libraries provide basic functions that automatically take care of tasks such as cryptographically signing your requests, retrying requests, and handling error responses, so that it is easier for you to get started. For more information about the AWS SDKs, go to <a href="https://aws.amazon.com/developer/tools/">Tools to build on AWS</a> page, scroll down to the <b>SDK</b> section, and choose plus (+) sign to expand the section. </p>

Installing

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

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

Getting Started

Import

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

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

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

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

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

ts
import { FraudDetector } from "@aws-sdk/client-frauddetector";

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

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

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

// callbacks (not recommended).
client.listEventPredictions(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-frauddetector 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> BatchCreateVariable </summary>

Command API Reference / Input / Output

</details> <details> <summary> BatchGetVariable </summary>

Command API Reference / Input / Output

</details> <details> <summary> CancelBatchImportJob </summary>

Command API Reference / Input / Output

</details> <details> <summary> CancelBatchPredictionJob </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateBatchImportJob </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateBatchPredictionJob </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateDetectorVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateList </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateModel </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateModelVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateRule </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateVariable </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteBatchImportJob </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteBatchPredictionJob </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> DeleteDetectorVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteEntityType </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteEvent </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteEventsByEventType </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteEventType </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteExternalModel </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteLabel </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteList </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteModel </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteModelVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteOutcome </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteRule </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteVariable </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeDetector </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeModelVersions </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetBatchImportJobs </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetBatchPredictionJobs </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetDeleteEventsByEventTypeStatus </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetDetectors </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetDetectorVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetEntityTypes </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetEvent </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetEventPrediction </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetEventPredictionMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetEventTypes </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetExternalModels </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetKMSEncryptionKey </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetLabels </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetListElements </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetListsMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetModels </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetModelVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetOutcomes </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetRules </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetVariables </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListEventPredictions </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> PutDetector </summary>

Command API Reference / Input / Output

</details> <details> <summary> PutEntityType </summary>

Command API Reference / Input / Output

</details> <details> <summary> PutEventType </summary>

Command API Reference / Input / Output

</details> <details> <summary> PutExternalModel </summary>

Command API Reference / Input / Output

</details> <details> <summary> PutKMSEncryptionKey </summary>

Command API Reference / Input / Output

</details> <details> <summary> PutLabel </summary>

Command API Reference / Input / Output

</details> <details> <summary> PutOutcome </summary>

Command API Reference / Input / Output

</details> <details> <summary> SendEvent </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> UpdateDetectorVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateDetectorVersionMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateDetectorVersionStatus </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateEventLabel </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateList </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateModel </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateModelVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateModelVersionStatus </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateRuleMetadata </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateRuleVersion </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateVariable </summary>

Command API Reference / Input / Output

</details>