AWS

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

Integrate the AWS API with the Dropbox API

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

CloudWatch Logs - Put Log Event with AWS API on New File from Dropbox API
Dropbox + AWS
 
Try it
DynamoDB - Create Table with AWS API on New File from Dropbox API
Dropbox + AWS
 
Try it
DynamoDB - Execute Statement with AWS API on New File from Dropbox API
Dropbox + AWS
 
Try it
DynamoDB - Get Item with AWS API on New File from Dropbox API
Dropbox + AWS
 
Try it
DynamoDB - Put Item with AWS API on New File from Dropbox API
Dropbox + AWS
 
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 File from the Dropbox API

Emit new event when a new file is added to your account or a specific folder. Make sure the number of files/folders in the watched folder does not exceed 4000.

 
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 Folder from the Dropbox API

Emit new event when a new folder is created. Make sure the number of files/folders in the watched folder does not exceed 4000.

 
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
Create a Text File with the Dropbox API

Creates a brand new text file from plain text content you specify. See 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
Create folder with the Dropbox API

Create a folder. See docs here

 
Try it
DynamoDB - Create Table with the AWS API

Creates a new table to your account. See docs

 
Try it
Create or Append to a Text File with the Dropbox API

Adds a new line to an existing text file, or creates a file if it doesn't exist. See 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 Dropbox

With the Dropbox API, you can build a variety of applications that range from
simple file sharing to complex content management systems. Some examples of
what you can build using the Dropbox API include:

  • A file sharing application that allows users to share and sync files across
    devices
  • A content management system that allows users to manage and share files and
    folders
  • A note taking application that allows users to sync notes across devices
  • A task management application that allows users to manage and share tasks and
    files
  • A document management application that allows users to manage and share
    documents and files

Connect Dropbox

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    dropbox: {
      type: "app",
      app: "dropbox",
    }
  },
  async run({steps, $}) {
    const data = {
      "account_id": `${this.dropbox.$auth.oauth_uid}`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.dropboxapi.com/2/users/get_account`,
      headers: {
        Authorization: `Bearer ${this.dropbox.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Community Posts

Integrating Location Data into Pipedream Workflows
Integrating Location Data into Pipedream Workflows
Over the past few months, I've become somewhat enamored with a new service called Pipedream. Pipedream is yet another serverless solution with a bit of a twist. It makes it easy to build workflows by piecing together various actions like LEGO bricks. These actions are small pieces of programming logic that cover a wide variety of different services. You can connect these actions together along with the ability to write Node code for your own logic.