Reference no: EM132730189
CSC73001 Cloud Systems Development - Southern Cross University
Assignment - S3 and DynamoDB Exercise
Overview: Students are expected to demonstrate their level of understanding and skill attained through practicing the workshops.
Environment Setup: You need to use the AWS Educate (classroom) account created for you, along with Cloud9 as development environment as well as S3 and DynamoDB as AWS services. You will find these tools by AWS Console in your classroom account. It is expected that you already have completed the setup of the development environment (e.g., installing java, AWS SDK, maven etc.), following week 2 workshop document on Cloud9. You need to use AWS SDK v2.5 of both S3 and DynamoDB for completing this assignment. Other version of the SDK will not be accepted.
Part A - Create a Java app using maven in Cloud9 to first create and then read an S3 object.
Tasks
• Create an empty S3 bucket named your SCU user name-a1-s3bucket (e.g., mine one would be pchakrab15-a1-s3bucket). Update the Block public access and the Bucket Policy, so that the bucket objects are publicly accessible.
• Create an app in Cloud9 with maven using appropriate commands shown in workshop. The app should have the following characteristics:
o App/project name: your SCU usernamea1s3app (e.g., mine one would be pchakraba1s3app).
o Package name: assgn1.s3app.
o Jar file version: only a decimal number (e.g., 1.0).
o Jar file name: Combination of your project/app name and the jar version.
o Include appropriate dependency into the pom.xml.
• Write a Java program in the App.java file created inside the maven app. Your java program needs the following capabilities. Your program must include proper exception handling (try- catch statement). Your program should:
o Create an object into the newly created empty S3 bucket. This object would actually be a .tmp file named as your SCU user name-detail.tmp, e.g., pchakrab15-detail.tmp. While creating this object/file, your program should write your details including your full name, student id, and number of units taken this session into the object/file.
o Read the content of the object/file (just created in the step before) and save the content into another local (in-app) .txt file.
o You must create two separate methods in App.java to implement these two tasks described above and call the methods in the main method.
• Find and note down the Object URL of the bucket object your app have created during testing by clicking the object.
Part B - Create a new Java app using maven in Cloud9 that can insert and update DynamoDB entry.
Tasks
• Create the following table into DynamoDB. The table has a single primary key, Id. Car (Id, Model, Make, Year, Colour); Model, Make, Colour: String, Id, Year: Number.
• Create a new app in Cloud9 with maven using appropriate commands shown in workshop. The app should have the following characteristics:
o App/project name: your SCU usernamea1ddbapp (e.g., mine one would be pchakraba1ddbapp).
o Package name: au.edu.scu.ddbapp.
o Jar file version: only a decimal number (e.g., 1.0).
o Jar file name: Combination of your project/app name and the jar version.
o Include appropriate dependency into the pom.xml.
• Write a Java program in the App.java file created inside the maven app. Your program must include proper exception handling (try-catch block). Your program needs the following capabilities. It should:
o Insert (create) five entries with appropriate values into the ‘Car' table you have created. You must use loop to insert these entries.
o Reading all existing items from the table and displaying the values for each item on the console.
o You must create two separate methods in App.java to implement these two tasks and then call them into your main method.
Attachment:- Cloud Systems Development.rar