Back to Aws Sdk Js V3

@aws-sdk/client-acm-pca

clients/client-acm-pca/README.md

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

@aws-sdk/client-acm-pca

Description

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

<p>This is the <i>Amazon Web Services Private Certificate Authority API Reference</i>. It provides descriptions, syntax, and usage examples for each of the actions and data types involved in creating and managing a private certificate authority (CA) for your organization.</p> <p>The documentation for each action shows the API request parameters and the JSON response. Alternatively, you can use one of the Amazon Web Services SDKs to access an API that is tailored to the programming language or platform that you prefer. For more information, see <a href="https://aws.amazon.com/tools/#SDKs">Amazon Web Services SDKs</a>.</p> <p>Each Amazon Web Services Private CA API operation has a quota that determines the number of times the operation can be called per second. Amazon Web Services Private CA throttles API requests at different rates depending on the operation. Throttling means that Amazon Web Services Private CA rejects an otherwise valid request because the request exceeds the operation's quota for the number of requests per second. When a request is throttled, Amazon Web Services Private CA returns a <a href="https://docs.aws.amazon.com/privateca/latest/APIReference/CommonErrors.html">ThrottlingException</a> error. Amazon Web Services Private CA does not guarantee a minimum request rate for APIs. </p> <p>To see an up-to-date list of your Amazon Web Services Private CA quotas, or to request a quota increase, log into your Amazon Web Services account and visit the <a href="https://console.aws.amazon.com/servicequotas/">Service Quotas</a> console.</p>

Installing

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

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

Getting Started

Import

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

js
// ES5 example
const { ACMPCAClient, ListTagsCommand } = require("@aws-sdk/client-acm-pca");
ts
// ES6+ example
import { ACMPCAClient, ListTagsCommand } from "@aws-sdk/client-acm-pca";

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

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

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

ts
import { ACMPCA } from "@aws-sdk/client-acm-pca";

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

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

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

// callbacks (not recommended).
client.listTags(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-acm-pca 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> CreateCertificateAuthority </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateCertificateAuthorityAuditReport </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreatePermission </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteCertificateAuthority </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeletePermission </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeletePolicy </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeCertificateAuthority </summary>

Command API Reference / Input / Output

</details> <details> <summary> DescribeCertificateAuthorityAuditReport </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetCertificate </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetCertificateAuthorityCertificate </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetCertificateAuthorityCsr </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetPolicy </summary>

Command API Reference / Input / Output

</details> <details> <summary> ImportCertificateAuthorityCertificate </summary>

Command API Reference / Input / Output

</details> <details> <summary> IssueCertificate </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListCertificateAuthorities </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListPermissions </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListTags </summary>

Command API Reference / Input / Output

</details> <details> <summary> PutPolicy </summary>

Command API Reference / Input / Output

</details> <details> <summary> RestoreCertificateAuthority </summary>

Command API Reference / Input / Output

</details> <details> <summary> RevokeCertificate </summary>

Command API Reference / Input / Output

</details> <details> <summary> TagCertificateAuthority </summary>

Command API Reference / Input / Output

</details> <details> <summary> UntagCertificateAuthority </summary>

Command API Reference / Input / Output

</details> <details> <summary> UpdateCertificateAuthority </summary>

Command API Reference / Input / Output

</details>