Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/retgits/flogo-components/activity/amazons3

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/retgits/flogo-components/activity/amazons3

  • v0.0.0-20200929013306-dceaa68d6833
  • Source
  • Go
  • Socket score

Version published
Created
Source

Amazon S3

Upload or Download files from Amazon Simple Storage Service (S3)

Installation

flogo install github.com/retgits/flogo-components/activity/amazons3

Link for flogo web:

https://github.com/retgits/flogo-components/activity/amazons3

Schema

Inputs and Outputs:

{
    "inputs": [
        {
            "name": "action",
            "type": "string",
            "allowed": [
                "download",
                "upload",
                "delete",
                "copy"
            ],
            "required": true
        },
        {
            "name": "awsAccessKeyID",
            "type": "string",
            "required": true
        },
        {
            "name": "awsSecretAccessKey",
            "type": "string",
            "required": true
        },
        {
            "name": "awsRegion",
            "type": "string",
            "required": true
        },
        {
            "name": "s3BucketName",
            "type": "string",
            "required": true
        },
        {
            "name": "s3Location",
            "type": "string",
            "required": true
        },
        {
            "name": "localLocation",
            "type": "string"
        },
        {
            "name": "s3NewLocation",
            "type": "string"
        }
    ],
    "outputs": [
        {
            "name": "result",
            "type": "string"
        }
    ]
}

Inputs

InputDescription
actionThe action you want to take, either download, upload, delete, or copy
awsAccessKeyIDYour AWS Access Key (only needed if you don't give your Lambda function rights to invoke S3 reads and puts)
awsSecretAccessKeyYour AWS Secret Key (only needed if you don't give your Lambda function rights to invoke S3 reads and puts)
awsRegionThe AWS region your S3 bucket is in
s3BucketNameThe name of your S3 bucket
s3LocationThe file location on S3, this should be a full path (like /bla/temp.txt)
localLocationThe localLocation is the full path to a file (like /bla/temp.txt) when uploading a file or the full path to a directory (like ./tmp) when downloading a file
s3NewLocationThe new file location on S3 of you want to copy a file, this should be a full path (like /bla/temp.txt)

Ouputs

OutputDescription
resultThe result will contain OK if the action was carried out successfully or will contain an error message

FAQs

Package last updated on 29 Sep 2020

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc