AWS

Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.

Integrate the AWS API with the Twilio SendGrid API

Setup the AWS API trigger to run a workflow which integrates with the Twilio SendGrid API. Pipedream's integration platform allows you to integrate AWS and Twilio SendGrid remarkably fast. Free for developers.

Add Email to Global Suppression with Twilio SendGrid API on New Scheduled Tasks from AWS API
AWS + Twilio SendGrid
 
Try it
Add Email to Global Suppression with Twilio SendGrid API on New SNS Messages from AWS API
AWS + Twilio SendGrid
 
Try it
Add or Update Contact with Twilio SendGrid API on New Scheduled Tasks from AWS API
AWS + Twilio SendGrid
 
Try it
Add or Update Contact with Twilio SendGrid API on New SNS Messages from AWS API
AWS + Twilio SendGrid
 
Try it
Create Contact List with Twilio SendGrid API on New Scheduled Tasks from AWS API
AWS + Twilio SendGrid
 
Try it
New Scheduled Tasks from the AWS API

Creates a Step Function State Machine to publish a message to an SNS topic at a specific timestamp. The SNS topic delivers the message to this Pipedream source, and the source emits it as a new event.

 
Try it
New SNS Messages from the AWS API

Creates an SNS topic in your AWS account. Messages published to this topic are emitted from the Pipedream source.

 
Try it
New Inbound SES Emails from the AWS API

The source subscribes to all emails delivered to a specific domain configured in AWS SES. When an email is sent to any address at the domain, this event source emits that email as a formatted event. These events can trigger a Pipedream workflow and can be consumed via SSE or REST API.

 
Try it
New Contact from the Twilio SendGrid API

Emit new event when a new contact is created

 
Try it
New Deleted S3 File from the AWS API

Emit new event when a file is deleted from a S3 bucket

 
Try it
Add Email to Global Suppression with the Twilio SendGrid API

Allows you to add one or more email addresses to the global suppressions group. See the docs here

 
Try it
Add or Update Contact with the Twilio SendGrid API

Adds or updates a contact. See the docs here

 
Try it
Create Contact List with the Twilio SendGrid API

Allows you to create a new contact list. See the docs here

 
Try it
CloudWatch Logs - Put Log Event with the AWS API

Uploads a log event to the specified log stream. See docs

 
Try it
Delete Blocks with the Twilio SendGrid API

Allows you to delete all email addresses on your blocks list. See the docs here

 
Try it

Overview of AWS

You can use the AWS API to build a variety of applications and services. Here
are some examples:

  • A mobile application that allows users to access data stored in the cloud
  • A web application that allows users to upload and download files
  • A web service that allows developers to access Amazon's vast product catalog
  • A desktop application that allows users to access their Amazon account
    information

Connect AWS

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import AWS from 'aws-sdk'

export default defineComponent({
  props: {
    aws: {
      type: "app",
      app: "aws",
    }
  },
  async run({steps, $}) {
    const { accessKeyId, secretAccessKey } = this.aws.$auth
    
    /* Now, pass the accessKeyId and secretAccessKey to the constructor for your desired service. For example:
    
    const dynamodb = new AWS.DynamoDB({
      accessKeyId, 
      secretAccessKey,
      region: 'us-east-1',
    })
    
    */
  },
})

Overview of Twilio SendGrid

With the Twilio SendGrid API, you can build a number of features into your
application to manage your SendGrid account and send emails. For example, you
can use the API to:

  • Create and manage SendGrid accounts
  • Send emails through SendGrid
  • Manage email templates
  • Get statistics on email sends
  • And more!

Connect Twilio SendGrid

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    sendgrid: {
      type: "app",
      app: "sendgrid",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.sendgrid.com/v3/user/account`,
      headers: {
        Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
      },
    })
  },
})

Community Posts

How Our Family Uses SMS and Smart Picture Frames to Connect During Remote Holidays
How Our Family Uses SMS and Smart Picture Frames to Connect During Remote Holidays
Two days before Thanksgiving, I decided to put together a simple way for our family to share pictures, because we couldn’t be together in person. The idea: smart photo frames that everyone could text pictures to. Here’s how I got it working. tldr; A Pipedream workflow parses SMS messages sent to a Twilio phone number, extracting the pictures and then using SendGrid to email them to the dedicated email addresses used by our Pix-Star photo frames.