Description
In this course, you will :
- Use Gradle and the AWS SDK to create a Java project that will create an S3 bucket in AWS. Let's get started.
Syllabus:
1. Create the Gradle Java Project
- Configure the AWS CLI.
- Install SDKMAN using the curl command provided.
- Install Java.
- Install Gradle.
- Create the guru_aws project directory.
- Move into the guru_aws directory.
- Initialize the guru_aws directory to build the scaffolding for the project.
2. Modify the Java Application
- Move the files found in the gradle_lab/AWS directory to the guru_aws directory.
- Add the src directory to your build.
- Modify the build file and add the AWS SDK dependencies and the project name to it, then add the project name to the CreateBucket.java file.
3. Create the S3 Bucket
- Build your application.
- Run your application to create the S3 bucket in AWS.
- Confirm that the bucket has been created.