npm.io
3.1135.0 • Published yesterday

@aws-sdk/client-amplify

Licence
Apache-2.0
Version
3.1135.0
Deps
0
Vulns
0
Weekly
0
Stars
3.6K

@aws-sdk/client-amplify

Description

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

Amplify enables developers to develop and deploy cloud-powered mobile and web apps. Amplify Hosting provides a continuous delivery and hosting service for web applications. For more information, see the Amplify Hosting User Guide. The Amplify Framework is a comprehensive set of SDKs, libraries, tools, and documentation for client app development. For more information, see the Amplify Framework.

Installing

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

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

Getting Started

Import

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

// ES5 example
const { AmplifyClient, ListAppsCommand } = require("@aws-sdk/client-amplify");
// ES6+ example
import { AmplifyClient, ListAppsCommand } from "@aws-sdk/client-amplify";
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.
const client = new AmplifyClient({ region: "REGION" });

const params = { /** input parameters */ };
const command = new ListAppsCommand(params);
Async/await

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

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

You can also use Promise chaining.

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.

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

import { Amplify } from "@aws-sdk/client-amplify";

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

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

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

// callbacks (not recommended).
client.listApps(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).

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-amplify 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)

CreateApp

Command API Reference / Input / Output

CreateBackendEnvironment

Command API Reference / Input / Output

CreateBranch

Command API Reference / Input / Output

CreateDeployment

Command API Reference / Input / Output

CreateDomainAssociation

Command API Reference / Input / Output

CreateWebhook

Command API Reference / Input / Output

DeleteApp

Command API Reference / Input / Output

DeleteBackendEnvironment

Command API Reference / Input / Output

DeleteBranch

Command API Reference / Input / Output

DeleteDomainAssociation

Command API Reference / Input / Output

DeleteJob

Command API Reference / Input / Output

DeleteWebhook

Command API Reference / Input / Output

GenerateAccessLogs

Command API Reference / Input / Output

GetApp

Command API Reference / Input / Output

GetArtifactUrl

Command API Reference / Input / Output

GetBackendEnvironment

Command API Reference / Input / Output

GetBranch

Command API Reference / Input / Output

GetDomainAssociation

Command API Reference / Input / Output

GetJob

Command API Reference / Input / Output

GetWebhook

Command API Reference / Input / Output

ListApps

Command API Reference / Input / Output

ListArtifacts

Command API Reference / Input / Output

ListBackendEnvironments

Command API Reference / Input / Output

ListBranches

Command API Reference / Input / Output

ListDomainAssociations

Command API Reference / Input / Output

ListJobs

Command API Reference / Input / Output

ListTagsForResource

Command API Reference / Input / Output

ListWebhooks

Command API Reference / Input / Output

StartDeployment

Command API Reference / Input / Output

StartJob

Command API Reference / Input / Output

StopJob

Command API Reference / Input / Output

TagResource

Command API Reference / Input / Output

UntagResource

Command API Reference / Input / Output

UpdateApp

Command API Reference / Input / Output

UpdateBranch

Command API Reference / Input / Output

UpdateDomainAssociation

Command API Reference / Input / Output

UpdateWebhook

Command API Reference / Input / Output