SDEV400 Homework1–creation and use of Amazon S3 buckets Solved

30.00 $

Category:

Description

5/5 - (2 votes)

Overview: In this homework, you will demonstrate the successful creation and use of Amazon S3 buckets using AWS Management Console and the Cloud9 programming interface.

  1. Using the AWS Management Console, create two (2) S3 buckets with DNS-compliant names of your choice. In each of the buckets create 2 folders named as follows:
    • Jobs
    • Support

Once you have created the buckets and folders, provide screen captures clearly demonstrating your successful completion of this step. Be sure to provide a figure number and title as well as a description of to describe the images. Your screen captures should clearly show the bucket named created and folders for each bucket.

  1. Using the AWS Management Console, copy 2 files (or your choice) to each of the 2 folders you created for your S3 buckets. (This means a total of 8 files will be moved to the S3 buckets.)

Once you have completed steps 1 and 2, provide screen captures clearly demonstrating your successful completion of these steps. Be sure to provide a figure number and title as well as a description of the screen captures. Your screen captures should clearly show the bucket names created, the folders residing in each bucket and the files sent to each folder.

  1. Using the Cloud9 IDE within your assigned AWS Educate classroom, write and provide documentation supporting a Python command line menu-driven interface application that performs the following AWS S3 functionality:
    1. Creates a S3 bucket with the name consisting of your firstname, lastname and a random 6digit suffix. For example, the following would be a possible bucket name jimrobertson-321921.
    2. Puts objects in a previously created bucket.
    3. Deletes an object in a bucket.
    4. Deletes a bucket.
    5. Copies and object from one bucket to another.
    6. Downloads an existing object from a bucket.
    7. Exit the program. Upon exit, the application should list the date and time.

Hints:

1

 

  • The menu should be launched from the AWS Cloud9 command line interface and contain options to perform each of the functionality listed above. (Review the Python textbook for basic functionality as needed)
  • Use the code examples provided in the content area to cobble together the application
  • Be sure to thoroughly test each function and document the results of your tests that include the input, expected output, actual output and if the test passed. Screen captures should be included with each test case.
  • Document your code with comments and use small functions as opposed to larger main functions.
  • Week2-1icpu1.zip