alfonsof / aws-java-examples

Java examples on AWS (Amazon Web Services) using AWS SDK for Java (SDK V1). How to manage EC2 instances, Lambda Functions, S3 buckets, etc.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Java examples on AWS (Amazon Web Services) - SDK V1

This repo contains Java code examples on AWS (Amazon Web Services).

These examples show how to use Java 8 and AWS SDK for Java (SDK V1) in order to manage Amazon services on AWS.

AWS SDK for Java allows Java developers to write software that makes use of Amazon services like EC2 and S3.

If you have to use AWS SDK for Java (SDK V2) you have the Java code examples on AWS following this link: https://github.com/alfonsof/aws-java-v2-examples/

Quick start

You must have an AWS (Amazon Web Services) account.

The code for the samples is contained in individual folders on this repository.

For instructions on running the code, please consult the README in each folder.

This is the list of examples:

Compute - Amazon EC2:

  • awsec2instances - AWS EC2 instances: Example of how to handle AWS EC2 instances.

Compute - AWS Lambda:

  • Lambda function handler:

    • awslambdahello - AWS Lambda Function Hello World: Example of how to handle an AWS simple Lambda function and a text input.
    • awslambdahellojson - AWS Lambda Function Hello World JSON: Example of how to handle an AWS simple Lambda function and a JSON input, using classes for Request and Response.
    • awslambdahttprequest - AWS Lambda Function Http Request: Example of how to handle an AWS Lambda Function, show the parameters of the request and respond a message including the parameters.
    • awslambdas3event - AWS Lambda Function S3 Event: Example of how to handle an AWS Lambda Function and send information to the log about an object when it appears in a S3 bucket.
    • awslambdas3copy - AWS Lambda Function S3 Copy: Example of how to handle an AWS Lambda function and copy an object when it appears in a S3 bucket to another S3 bucket.
    • awslambdas3move - AWS Lambda Function S3 Move: Example of how to handle an AWS Lambda function and move an object when it appears in a S3 bucket to another S3 bucket.
  • Lambda service client - Service operations:

    • awslambdacreate - AWS Lambda Function Create: Example of how to handle an AWS Lambda function and create it.
    • awslambdaupdate - AWS Lambda Function Update: Example of how to handle an AWS Lambda function and update it.
    • awslambdainvoke - AWS Lambda Function Invoke: Example of how to handle an AWS Lambda function and invoke it.
    • awslambdalist - AWS Lambda Function List: Example of how to handle an AWS Lambda function and list its information.
    • awslambdalistall - AWS Lambda Function List All: Example of how to handle AWS Lambda functions and list all Lambda functions and their information.
    • awslambdadelete - AWS Lambda Function Delete: Example of how to handle an AWS Lambda function and delete it.

Storage - Amazon S3:

  • awss3create - AWS S3 Create: Example of how to handle S3 buckets and create a new S3 bucket.
  • awss3delete - AWS S3 Delete: Example of how to handle S3 buckets and delete a S3 bucket.
  • awss3list - AWS S3 List: Example of how to handle S3 buckets and list information about the objects in a S3 bucket.
  • awss3listall - AWS S3 List All: Example of how to handle S3 buckets and list information about all S3 buckets and the objects that they contain.
  • awss3upload - AWS S3 Upload: Example of how to handle S3 buckets and upload a local file to a S3 bucket.
  • awss3download - AWS S3 Download: Example of how to handle S3 buckets and download an object from a S3 bucket to a local file.
  • awss3deleteobject - AWS S3 Delete Object: Example of how to handle S3 buckets and delete an object in a S3 bucket.
  • awss3copy - AWS S3 Copy: Example of how to handle S3 buckets and copy an object from a S3 bucket to another S3 bucket.
  • awss3move - AWS S3 Move: Example of how to handle S3 buckets and move an object from a S3 bucket to another S3 bucket.

License

This code is released under the MIT License. See LICENSE file.

About

Java examples on AWS (Amazon Web Services) using AWS SDK for Java (SDK V1). How to manage EC2 instances, Lambda Functions, S3 buckets, etc.

License:MIT License


Languages

Language:Java 100.0%