Socket
Socket
Sign inDemoInstall

@aws-sdk/client-amplifybackend

Package Overview
Dependencies
31
Maintainers
5
Versions
327
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/client-amplifybackend


Version published
Maintainers
5
Created

Package description

What is @aws-sdk/client-amplifybackend?

The @aws-sdk/client-amplifybackend package is part of the AWS SDK for JavaScript. It provides a client for interacting with AWS Amplify Backend, which allows developers to create and manage backend environments for their web and mobile applications. This includes functionalities such as creating and managing backend environments, configuring authentication, and managing storage and data models.

What are @aws-sdk/client-amplifybackend's main functionalities?

Create Backend Environment

This feature allows you to create a new backend environment for your Amplify app. The code sample demonstrates how to use the CreateBackendCommand to create a backend environment named 'dev' for a specified app.

{"language":"javascript","content":"const { AmplifyBackendClient, CreateBackendCommand } = require('@aws-sdk/client-amplifybackend');\n\nconst client = new AmplifyBackendClient({ region: 'us-west-2' });\n\nconst params = {\n  AppId: 'your-app-id',\n  BackendEnvironmentName: 'dev',\n};\n\nconst run = async () => {\n  try {\n    const data = await client.send(new CreateBackendCommand(params));\n    console.log('Backend environment created:', data);\n  } catch (err) {\n    console.error('Error creating backend environment:', err);\n  }\n};\n\nrun();"}

Configure Authentication

This feature allows you to configure authentication for your backend environment. The code sample demonstrates how to use the CreateBackendAuthCommand to set up authentication using Amazon Cognito.

{"language":"javascript","content":"const { AmplifyBackendClient, CreateBackendAuthCommand } = require('@aws-sdk/client-amplifybackend');\n\nconst client = new AmplifyBackendClient({ region: 'us-west-2' });\n\nconst params = {\n  AppId: 'your-app-id',\n  BackendEnvironmentName: 'dev',\n  ResourceConfig: {\n    AuthResources: 'USER_POOL_ONLY',\n    IdentityPoolConfigs: {\n      IdentityPoolName: 'myIdentityPool',\n    },\n    Service: 'COGNITO',\n  },\n  ResourceName: 'authResource',\n};\n\nconst run = async () => {\n  try {\n    const data = await client.send(new CreateBackendAuthCommand(params));\n    console.log('Authentication configured:', data);\n  } catch (err) {\n    console.error('Error configuring authentication:', err);\n  }\n};\n\nrun();"}

Manage Storage

This feature allows you to manage storage for your backend environment. The code sample demonstrates how to use the CreateBackendStorageCommand to configure an S3 bucket with specific permissions for authenticated and unauthenticated users.

{"language":"javascript","content":"const { AmplifyBackendClient, CreateBackendStorageCommand } = require('@aws-sdk/client-amplifybackend');\n\nconst client = new AmplifyBackendClient({ region: 'us-west-2' });\n\nconst params = {\n  AppId: 'your-app-id',\n  BackendEnvironmentName: 'dev',\n  ResourceConfig: {\n    Permissions: {\n      Authenticated: ['READ', 'CREATE_AND_UPDATE', 'DELETE'],\n      UnAuthenticated: ['READ'],\n    },\n    ServiceName: 'S3',\n  },\n  ResourceName: 'storageResource',\n};\n\nconst run = async () => {\n  try {\n    const data = await client.send(new CreateBackendStorageCommand(params));\n    console.log('Storage configured:', data);\n  } catch (err) {\n    console.error('Error configuring storage:', err);\n  }\n};\n\nrun();"}

Other packages similar to @aws-sdk/client-amplifybackend

Changelog

Source

3.8.0 (2021-03-05)

Bug Fixes

  • deps: pin fast-xml-parser to v3.17.4 (#2102) (c612c75)
  • middleware-bucket-endpoint: revert add support for s3 object lamdbas (#2103) (827c7b8)
  • call filterSensitiveLog for missing structures (#2089) (1b5cb0f)

Features

  • lib-dynamodb: add DynamoDB DocumentClient (#2097) (3fd14d5)
  • add support for s3 object lamdbas (01bd1a0)

Readme

Source

@aws-sdk/client-amplifybackend

NPM version NPM downloads

Description

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

AWS Amplify Admin API

Installing

To install the this package, simply type add or install @aws-sdk/client-amplifybackend using your favorite package manager:

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

Getting Started

Import

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

// ES5 example
const { AmplifyBackendClient, CloneBackendCommand } = require("@aws-sdk/client-amplifybackend");
// ES6+ example
import { AmplifyBackendClient, CloneBackendCommand } from "@aws-sdk/client-amplifybackend";

Usage

To send a request, you:

  • Initiate client with configuration (e.g. credentials, region).
  • Initiate command with input parameters.
  • Call send operation on client with command object as input.
  • If you are using a custom http handler, you may call destroy() to close open connections.
// a client can be shared by difference commands.
const client = new AmplifyBackendClient({ region: "REGION" });

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

We recommend using 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.
}

Async-await is clean, concise, intuitive, easy to debug and has better error handling as compared to using Promise chains or callbacks.

Promises

You can also use Promise chaining to execute send operation.

client.send(command).then(
  (data) => {
    // process data.
  },
  (error) => {
    // error handling.
  }
);

Promises can also be called using .catch() and .finally() as follows:

client
  .send(command)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  })
  .finally(() => {
    // finally.
  });
Callbacks

We do not recommend using callbacks because of callback hell, but they are supported by the send operation.

// callbacks.
client.send(command, (err, data) => {
  // proccess err and data.
});
v2 compatible style

The client can also send requests using v2 compatible style. However, it results in a bigger bundle size and may be dropped in next major version. More details in the blog post on modular packages in AWS SDK for JavaScript

import * as AWS from "@aws-sdk/client-amplifybackend";
const client = new AWS.AmplifyBackend({ region: "REGION" });

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

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

// callbacks.
client.cloneBackend(params, (err, data) => {
  // proccess 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;
   * }
   */
}

Getting Help

Please use these community resources for getting help. We use the 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-amplifybackend 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.

FAQs

Last updated on 05 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc