JSPM

@aws-sdk/client-sesv2

3.887.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1998272
  • Score
    100M100P100Q211816F
  • License Apache-2.0

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

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@aws-sdk/client-sesv2) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    @aws-sdk/client-sesv2

    Description

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

    Amazon SES API v2

    Amazon SES is an Amazon Web Services service that you can use to send email messages to your customers.

    If you're new to Amazon SES API v2, you might find it helpful to review the Amazon Simple Email Service Developer Guide. The Amazon SES Developer Guide provides information and code samples that demonstrate how to use Amazon SES API v2 features programmatically.

    Installing

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

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

    Getting Started

    Import

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

    // ES5 example
    const { SESv2Client, ListTenantsCommand } = require("@aws-sdk/client-sesv2");
    // ES6+ example
    import { SESv2Client, ListTenantsCommand } from "@aws-sdk/client-sesv2";

    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 different commands.
    const client = new SESv2Client({ region: "REGION" });
    
    const params = {
      /** input parameters */
    };
    const command = new ListTenantsCommand(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) => {
      // process 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-sesv2";
    const client = new AWS.SESv2({ region: "REGION" });
    
    // async/await.
    try {
      const data = await client.listTenants(params);
      // process data.
    } catch (error) {
      // error handling.
    }
    
    // Promises.
    client
      .listTenants(params)
      .then((data) => {
        // process data.
      })
      .catch((error) => {
        // error handling.
      });
    
    // callbacks.
    client.listTenants(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;
       * }
       */
    }

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

    BatchGetMetricData

    Command API Reference / Input / Output

    CancelExportJob

    Command API Reference / Input / Output

    CreateConfigurationSet

    Command API Reference / Input / Output

    CreateConfigurationSetEventDestination

    Command API Reference / Input / Output

    CreateContact

    Command API Reference / Input / Output

    CreateContactList

    Command API Reference / Input / Output

    CreateCustomVerificationEmailTemplate

    Command API Reference / Input / Output

    CreateDedicatedIpPool

    Command API Reference / Input / Output

    CreateDeliverabilityTestReport

    Command API Reference / Input / Output

    CreateEmailIdentity

    Command API Reference / Input / Output

    CreateEmailIdentityPolicy

    Command API Reference / Input / Output

    CreateEmailTemplate

    Command API Reference / Input / Output

    CreateExportJob

    Command API Reference / Input / Output

    CreateImportJob

    Command API Reference / Input / Output

    CreateMultiRegionEndpoint

    Command API Reference / Input / Output

    CreateTenant

    Command API Reference / Input / Output

    CreateTenantResourceAssociation

    Command API Reference / Input / Output

    DeleteConfigurationSet

    Command API Reference / Input / Output

    DeleteConfigurationSetEventDestination

    Command API Reference / Input / Output

    DeleteContact

    Command API Reference / Input / Output

    DeleteContactList

    Command API Reference / Input / Output

    DeleteCustomVerificationEmailTemplate

    Command API Reference / Input / Output

    DeleteDedicatedIpPool

    Command API Reference / Input / Output

    DeleteEmailIdentity

    Command API Reference / Input / Output

    DeleteEmailIdentityPolicy

    Command API Reference / Input / Output

    DeleteEmailTemplate

    Command API Reference / Input / Output

    DeleteMultiRegionEndpoint

    Command API Reference / Input / Output

    DeleteSuppressedDestination

    Command API Reference / Input / Output

    DeleteTenant

    Command API Reference / Input / Output

    DeleteTenantResourceAssociation

    Command API Reference / Input / Output

    GetAccount

    Command API Reference / Input / Output

    GetBlacklistReports

    Command API Reference / Input / Output

    GetConfigurationSet

    Command API Reference / Input / Output

    GetConfigurationSetEventDestinations

    Command API Reference / Input / Output

    GetContact

    Command API Reference / Input / Output

    GetContactList

    Command API Reference / Input / Output

    GetCustomVerificationEmailTemplate

    Command API Reference / Input / Output

    GetDedicatedIp

    Command API Reference / Input / Output

    GetDedicatedIpPool

    Command API Reference / Input / Output

    GetDedicatedIps

    Command API Reference / Input / Output

    GetDeliverabilityDashboardOptions

    Command API Reference / Input / Output

    GetDeliverabilityTestReport

    Command API Reference / Input / Output

    GetDomainDeliverabilityCampaign

    Command API Reference / Input / Output

    GetDomainStatisticsReport

    Command API Reference / Input / Output

    GetEmailIdentity

    Command API Reference / Input / Output

    GetEmailIdentityPolicies

    Command API Reference / Input / Output

    GetEmailTemplate

    Command API Reference / Input / Output

    GetExportJob

    Command API Reference / Input / Output

    GetImportJob

    Command API Reference / Input / Output

    GetMessageInsights

    Command API Reference / Input / Output

    GetMultiRegionEndpoint

    Command API Reference / Input / Output

    GetReputationEntity

    Command API Reference / Input / Output

    GetSuppressedDestination

    Command API Reference / Input / Output

    GetTenant

    Command API Reference / Input / Output

    ListConfigurationSets

    Command API Reference / Input / Output

    ListContactLists

    Command API Reference / Input / Output

    ListContacts

    Command API Reference / Input / Output

    ListCustomVerificationEmailTemplates

    Command API Reference / Input / Output

    ListDedicatedIpPools

    Command API Reference / Input / Output

    ListDeliverabilityTestReports

    Command API Reference / Input / Output

    ListDomainDeliverabilityCampaigns

    Command API Reference / Input / Output

    ListEmailIdentities

    Command API Reference / Input / Output

    ListEmailTemplates

    Command API Reference / Input / Output

    ListExportJobs

    Command API Reference / Input / Output

    ListImportJobs

    Command API Reference / Input / Output

    ListMultiRegionEndpoints

    Command API Reference / Input / Output

    ListRecommendations

    Command API Reference / Input / Output

    ListReputationEntities

    Command API Reference / Input / Output

    ListResourceTenants

    Command API Reference / Input / Output

    ListSuppressedDestinations

    Command API Reference / Input / Output

    ListTagsForResource

    Command API Reference / Input / Output

    ListTenantResources

    Command API Reference / Input / Output

    ListTenants

    Command API Reference / Input / Output

    PutAccountDedicatedIpWarmupAttributes

    Command API Reference / Input / Output

    PutAccountDetails

    Command API Reference / Input / Output

    PutAccountSendingAttributes

    Command API Reference / Input / Output

    PutAccountSuppressionAttributes

    Command API Reference / Input / Output

    PutAccountVdmAttributes

    Command API Reference / Input / Output

    PutConfigurationSetArchivingOptions

    Command API Reference / Input / Output

    PutConfigurationSetDeliveryOptions

    Command API Reference / Input / Output

    PutConfigurationSetReputationOptions

    Command API Reference / Input / Output

    PutConfigurationSetSendingOptions

    Command API Reference / Input / Output

    PutConfigurationSetSuppressionOptions

    Command API Reference / Input / Output

    PutConfigurationSetTrackingOptions

    Command API Reference / Input / Output

    PutConfigurationSetVdmOptions

    Command API Reference / Input / Output

    PutDedicatedIpInPool

    Command API Reference / Input / Output

    PutDedicatedIpPoolScalingAttributes

    Command API Reference / Input / Output

    PutDedicatedIpWarmupAttributes

    Command API Reference / Input / Output

    PutDeliverabilityDashboardOption

    Command API Reference / Input / Output

    PutEmailIdentityConfigurationSetAttributes

    Command API Reference / Input / Output

    PutEmailIdentityDkimAttributes

    Command API Reference / Input / Output

    PutEmailIdentityDkimSigningAttributes

    Command API Reference / Input / Output

    PutEmailIdentityFeedbackAttributes

    Command API Reference / Input / Output

    PutEmailIdentityMailFromAttributes

    Command API Reference / Input / Output

    PutSuppressedDestination

    Command API Reference / Input / Output

    SendBulkEmail

    Command API Reference / Input / Output

    SendCustomVerificationEmail

    Command API Reference / Input / Output

    SendEmail

    Command API Reference / Input / Output

    TagResource

    Command API Reference / Input / Output

    TestRenderEmailTemplate

    Command API Reference / Input / Output

    UntagResource

    Command API Reference / Input / Output

    UpdateConfigurationSetEventDestination

    Command API Reference / Input / Output

    UpdateContact

    Command API Reference / Input / Output

    UpdateContactList

    Command API Reference / Input / Output

    UpdateCustomVerificationEmailTemplate

    Command API Reference / Input / Output

    UpdateEmailIdentityPolicy

    Command API Reference / Input / Output

    UpdateEmailTemplate

    Command API Reference / Input / Output

    UpdateReputationEntityCustomerManagedStatus

    Command API Reference / Input / Output

    UpdateReputationEntityPolicy

    Command API Reference / Input / Output