Back to Aws Sdk Js V3

@aws-sdk/client-payment-cryptography

clients/client-payment-cryptography/README.md

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

@aws-sdk/client-payment-cryptography

Description

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

<p>Amazon Web Services Payment Cryptography Control Plane APIs manage encryption keys for use during payment-related cryptographic operations. You can create, import, export, share, manage, and delete keys. You can also manage Identity and Access Management (IAM) policies for keys. For more information, see <a href="https://docs.aws.amazon.com/payment-cryptography/latest/userguide/security-iam.html">Identity and access management</a> in the <i>Amazon Web Services Payment Cryptography User Guide.</i> </p> <p>To use encryption keys for payment-related transaction processing and associated cryptographic operations, you use the <a href="https://docs.aws.amazon.com/payment-cryptography/latest/DataAPIReference/Welcome.html">Amazon Web Services Payment Cryptography Data Plane</a>. You can perform actions like encrypt, decrypt, generate, and verify payment-related data.</p> <p>All Amazon Web Services Payment Cryptography API calls must be signed and transmitted using Transport Layer Security (TLS). We recommend you always use the latest supported TLS version for logging API requests. </p> <p>Amazon Web Services Payment Cryptography supports CloudTrail for control plane operations, a service that logs Amazon Web Services API calls and related events for your Amazon Web Services account and delivers them to an Amazon S3 bucket you specify. By using the information collected by CloudTrail, you can determine what requests were made to Amazon Web Services Payment Cryptography, who made the request, when it was made, and so on. If you don't configure a trail, you can still view the most recent events in the CloudTrail console. For more information, see the <a href="https://docs.aws.amazon.com/awscloudtrail/latest/userguide/">CloudTrail User Guide</a>.</p>

Installing

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

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

Getting Started

Import

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

js
// ES5 example
const { PaymentCryptographyClient, ListAliasesCommand } = require("@aws-sdk/client-payment-cryptography");
ts
// ES6+ example
import { PaymentCryptographyClient, ListAliasesCommand } from "@aws-sdk/client-payment-cryptography";

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

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

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

ts
import { PaymentCryptography } from "@aws-sdk/client-payment-cryptography";

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

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

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

// callbacks (not recommended).
client.listAliases(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-payment-cryptography 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> AddKeyReplicationRegions </summary>

Command API Reference / Input / Output

</details> <details> <summary> AssociateMpaTeam </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateAlias </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateKey </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteAlias </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteKey </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteResourcePolicy </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisableDefaultKeyReplicationRegions </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateMpaTeam </summary>

Command API Reference / Input / Output

</details> <details> <summary> EnableDefaultKeyReplicationRegions </summary>

Command API Reference / Input / Output

</details> <details> <summary> ExportKey </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetAlias </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetCertificateSigningRequest </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetDefaultKeyReplicationRegions </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetKey </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetMpaTeamAssociation </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetParametersForExport </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetParametersForImport </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetPublicKeyCertificate </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetResourcePolicy </summary>

Command API Reference / Input / Output

</details> <details> <summary> ImportKey </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListAliases </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListKeys </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> PutResourcePolicy </summary>

Command API Reference / Input / Output

</details> <details> <summary> RemoveKeyReplicationRegions </summary>

Command API Reference / Input / Output

</details> <details> <summary> RestoreKey </summary>

Command API Reference / Input / Output

</details> <details> <summary> StartKeyUsage </summary>

Command API Reference / Input / Output

</details> <details> <summary> StopKeyUsage </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> UpdateAlias </summary>

Command API Reference / Input / Output

</details>