Back to Aws Sdk Js V3

@aws-sdk/client-socialmessaging

clients/client-socialmessaging/README.md

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

@aws-sdk/client-socialmessaging

Description

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

<p> <i>Amazon Web Services End User Messaging Social</i>, also referred to as Social messaging, is a messaging service that enables application developers to incorporate WhatsApp into their existing workflows. The <i>Amazon Web Services End User Messaging Social API</i> provides information about the <i>Amazon Web Services End User Messaging Social API</i> resources, including supported HTTP methods, parameters, and schemas.</p> <p>The <i>Amazon Web Services End User Messaging Social API</i> provides programmatic access to options that are unique to the WhatsApp Business Platform.</p> <p>If you're new to the <i>Amazon Web Services End User Messaging Social API</i>, it's also helpful to review <a href="https://docs.aws.amazon.com/sms-voice/latest/userguide/what-is-service.html">What is Amazon Web Services End User Messaging Social</a> in the <i>Amazon Web Services End User Messaging Social User Guide</i>. The <i>Amazon Web Services End User Messaging Social User Guide</i> provides tutorials, code samples, and procedures that demonstrate how to use <i>Amazon Web Services End User Messaging Social API</i> features programmatically and how to integrate functionality into applications. The guide also provides key information, such as integration with other Amazon Web Services services, and the quotas that apply to use of the service.</p> <p> <b>Regional availability</b> </p> <p>The <i>Amazon Web Services End User Messaging Social API</i> is available across several Amazon Web Services Regions and it provides a dedicated endpoint for each of these Regions. For a list of all the Regions and endpoints where the API is currently available, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande.html#pinpoint_region">Amazon Web Services Service Endpoints</a> and <a href="https://docs.aws.amazon.com/general/latest/gr/end-user-messaging.html">Amazon Web Services End User Messaging endpoints and quotas</a> in the Amazon Web Services General Reference. To learn more about Amazon Web Services Regions, see <a href="https://docs.aws.amazon.com/general/latest/gr/rande-manage.html">Managing Amazon Web Services Regions</a> in the Amazon Web Services General Reference.</p> <p>In each Region, Amazon Web Services maintains multiple Availability Zones. These Availability Zones are physically isolated from each other, but are united by private, low-latency, high-throughput, and highly redundant network connections. These Availability Zones enable us to provide very high levels of availability and redundancy, while also minimizing latency. To learn more about the number of Availability Zones that are available in each Region, see <a href="https://aws.amazon.com/about-aws/global-infrastructure/">Amazon Web Services Global Infrastructure.</a> </p>

Installing

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

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

Getting Started

Import

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

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

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

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

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

ts
import { SocialMessaging } from "@aws-sdk/client-socialmessaging";

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

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

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

// callbacks (not recommended).
client.listTagsForResource(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-socialmessaging 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> AssociateWhatsAppBusinessAccount </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateWhatsAppMessageTemplate </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateWhatsAppMessageTemplateFromLibrary </summary>

Command API Reference / Input / Output

</details> <details> <summary> CreateWhatsAppMessageTemplateMedia </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteWhatsAppMessageMedia </summary>

Command API Reference / Input / Output

</details> <details> <summary> DeleteWhatsAppMessageTemplate </summary>

Command API Reference / Input / Output

</details> <details> <summary> DisassociateWhatsAppBusinessAccount </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetLinkedWhatsAppBusinessAccount </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetLinkedWhatsAppBusinessAccountPhoneNumber </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetWhatsAppMessageMedia </summary>

Command API Reference / Input / Output

</details> <details> <summary> GetWhatsAppMessageTemplate </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListLinkedWhatsAppBusinessAccounts </summary>

Command API Reference / Input / Output

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

Command API Reference / Input / Output

</details> <details> <summary> ListWhatsAppMessageTemplates </summary>

Command API Reference / Input / Output

</details> <details> <summary> ListWhatsAppTemplateLibrary </summary>

Command API Reference / Input / Output

</details> <details> <summary> PostWhatsAppMessageMedia </summary>

Command API Reference / Input / Output

</details> <details> <summary> PutWhatsAppBusinessAccountEventDestinations </summary>

Command API Reference / Input / Output

</details> <details> <summary> SendWhatsAppMessage </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> UpdateWhatsAppMessageTemplate </summary>

Command API Reference / Input / Output

</details>