Discover Classes. Earn Rewards.

Developing on AWS is unfortunately unavailable

Thankfully we have 38 other More Software Classes for you to choose from. Check our top choices below or see all classes for more options.

Graphic Design Bootcamp: Photoshop,Illustrator,InDesign

Borough of Manhattan Community College @ Live Online

Become a professional Graphic Designer with this intensive bootcamp that covers everything from graphic manipulation to web graphics. Industry experts will guide you through workflow standard projects, helping you build essential skills and experience. Don't miss out on this opportunity to take your graphic design career to the next level.

(178) Intermediate 18 and older
$914

15 sessions

Gift it!

Articulate Storyline 360 Core Skills: Level 1

ONLC Training Centers - Virtually Online

Learn how to create interactive eLearning projects from scratch in Articulate Storyline 360 with this comprehensive course. Discover how to add text, images, characters, and videos, as well as how to incorporate interactivity through buttons, triggers, and hotspots. Take your eLearning development skills to the next level at ONLC Training Centers.

(7) Beginner 18 and older
$795

2 sessions

Gift it!

Articulate Storyline 360 Core Skills: Level 2

ONLC Training Centers - Virtually Online

Enhance your e-learning projects with Articulate Storyline 360 Core Skills: Level 2. Gain hands-on practice in advanced interactions, media features, and customization techniques to deliver a better learner experience. Take your Storyline skills to the next level at ONLC Training Centers.

(7) Intermediate 18 and older
$795

2 sessions

Gift it!

CompTIA A+ Certification (Virtual)

Technical Institute of America @ Virtual Classroom

Get ready to become an IT industry expert with the most popular entry-level certification in the field. Master computer building, troubleshooting, and networking concepts with this comprehensive course from a top CompTIA Authorized Gold Partner. Train with experienced instructors and get hands-on experience to ace the exams and launch your career in IT.

(632) All levels 18 and older
$699

10 sessions

Gift it!

Certified Information Systems Security Professional

Technical Institute of America @ Virtual Classroom

Become a cybersecurity expert with the nation's leading provider of CISSP certification training. Join thousands of successful students and unlock exclusive resources and networking opportunities with an (ISC)² membership. Prove your skills, advance your career, and earn the salary you deserve with the Technical Institute of America.

(632) All levels 18 and older
$1,499

10 sessions

Gift it!
See all More Software classes Online

Developing on AWS

  • Intermediate
  • 16 and older
  • $2,025
  • Live Online Training
  • 24 hours over 3 sessions

Start Dates (0)

  • $2,025
  • Live Online Training
  • 24 hours over 3 sessions
Showing 10 of 0

Class Description

Description

What you'll learn in this more software class:

This course teaches experienced developers how to programmatically interact with AWS services to build web solutions. It guides you through a high-level architectural discussion on resource selection and dives deep into using the AWS Software Development Kits (AWS SDKs) and Command Line Interface (AWS CLI) to build and deploy your cloud applications. You will build a sample application during this course, learning how to set up permissions to the development evironment, adding business logic to process data using AWS core services, configure user authentications, deploy to AWS cloud, and debug to resolve application issues. This training includes code examples to help you implement the design patterns and solutions discussed in the course. The labs reinforce key course content and help you to implement solutions using the AWS SDK for Python, .Net and Java, the AWS CLI, and the AWS Management Console.

Intended Audience:

  • Software Developers
  • Solution Architects
  • IT workers who want to improve their developing skills using AWS Services

Prequisites:

Recommended

  • Working knowledge of AWS core services
  • Programming experience in any one of the following languages: Python, .NET, Java
  • AWS Technical Essentials

Course Objectives:

  • Build a simple end-to-end cloud application using AWS Software Development Kits (AWS SDKs), Command Line Interface (AWS CLI), and IDEs
  • Configure AWS Identity and Access Management (IAM) permissions to support a development environment
  • Use multiple programming patterns in your applications to access AWS services
  • Use AWS SDKs to perform CRUD (create, read, update, delete) operations on Amazon Simple Storage Service (Amazon S3) and Amazon DynamoDB resources
  • Build AWS Lambda functions with other service integrations for your web applications
  • Understand the benefits of microservices architectures and serverless applications to design
  • Develop API Gateway components and integrate with other AWS services
  • Explain how Amazon Cognito controls user access to AWS resources
  • Build a web application using Cognito to provide and control user access
  • Use DevOps methodology to reduce the risks associated with traditional application releases and identify AWS services that help in implementing DevOps practices
  • Use AWS Serverless Application Model (AWS SAM) to deploy an application
  • Observe your application build using Amazon X-Ray

Course Outline:

    1. Module 1: Course Overview
      1. Logistics
      2. Student resources
      3. Agenda
      4. Introductions
    2. Module 2: Building a Web Application on AWS
      1. Discuss the architecture of the application you are going to build during this course
      2. Explore the AWS services needed to build your web application
      3. Discover how to store, manage, and host your web application
    3. Module 3: Getting Started with Development on AWS
      1. Describe how to access AWS services programmatically
      2. List some programmatic patterns and how they provide efficiencies within AWS SDKs and AWS CLI
      3. Explain the value of AWS Cloud9
    4. Module 4: Getting Started with Permissions
      1. Review AWS Identity and Access Management (IAM) features and components permissions to support a development environment
      2. Demonstrate how to test AWS IAM permissions
      3. Configure your IDEs and SDKs to support a development environment
      4. Demonstrate accessing AWS services using SDKs and AWS Cloud9
      5. Lab 1: Configure the Developer Environment
        1. Connect to a developer environment
        2. Verify that the IDE and the AWS CLI are installed and configured to use the application profile
        3. Verify that the necessary permissions have been granted to run AWS CLI commands
        4. Assign an AWS IAM policy to a role to delete an Amazon S3 bucket
    5. Module 5: Getting Started with Storage
      1. Describe the basic concepts of Amazon S3
      2. List the options for securing data using Amazon S3
      3. Define SDK dependencies for your code
      4. Explain how to connect to the Amazon S3 service
      5. Describe request and response objects
    6. Module 6: Processing Your Storage Operations
      1. Perform key bucket and object operations
      2. Explain how to handle multiple and large objects
      3. Create and configure an Amazon S3 bucket to host a static website
      4. Grant temporary access to your objects
      5. Demonstrate performing Amazon S3 operations using SDKs
      6. Lab 2: Develop Solutions Using Amazon S3
        1. Interact with Amazon S3 programmatically using AWS SDKs and the AWS CLI
        2. Create a bucket using waiters and verify service exceptions codes
        3. Build the needed requests to upload an Amazon S3 object with metadata attached
        4. Build requests to download an object from the bucket, process data, and upload the object back to the bucket
        5. Configure a bucket to host the website and sync the source files using the AWS CLI
        6. Add IAM bucket policies to access the S3 website
    7. Module 7: Getting Started with Databases
      1. Describe the key components of DynamoDB
      2. Explain how to connect to DynamoDB
      3. Describe how to build a request object
      4. Explain how to read a response object
      5. List the most common troubleshooting exceptions
    8. Module 8: Processing Your Database Operations
      1. Develop programs to interact with DynamoDB using AWS SDKs
      2. Perform CRUD operations to access tables, indexes, and data
      3. Describe developer best practices when accessing DynamoDB
      4. Review caching options for DynamoDB to improve performance
      5. Perform DynamoDB operations using SDK
      6. Lab 3: Develop Solutions Using Amazon DynamoDB
        1. Interact with Amazon DynamoDB programmatically using low-level, document, and highlevel APIs in your programs
        2. Retrieve items from a table using key attributes, filters, expressions, and paginations
        3. Load a table by reading JSON objects from a file
        4. Search items from a table based on key attributes, filters, expressions, and paginations
        5. Update items by adding new attributes and changing data conditionally
        6. Access DynamoDB data using PartiQL and object-persistence models where applicable
    9. Module 9: Processing Your Application Logic
      1. Develop a Lambda function using SDKs
      2. Configure triggers and permissions for Lambda functions
      3. Test, deploy, and monitor Lambda functions
      4. Lab 4: Develop Solutions Using AWS Lambda Functions
        1. Create AWS Lambda functions and interact programmatically using AWS SDKs and AWS CLI
        2. Configure AWS Lambda functions to use the environment variables and to integrate with other services
        3. Generate Amazon S3 pre-signed URLs using AWS SDKs and verify the access to bucket objects
        4. Deploy the AWS Lambda functions with .zip file archives through your IDE and test as needed
        5. Invoke AWS Lambda functions using the AWS Console and AWS CLI
    10. Module 10: Managing the APIs
      1. Describe the key components of API Gateway
      2. Develop API Gateway resources to integrate with AWS services
      3. Configure API request and response calls for your application endpoints
      4. Test API resources and deploy your application API endpoint
      5. Demonstrate creating API Gateway resources to interact with your application APIs
      6. Lab 5: Develop Solutions Using Amazon API Gateway
        1. Create RESTful API Gateway resources and configure CORS for your application
        2. Integrate API methods with AWS Lambda functions to process application data
        3. Configure mapping templates to transform the pass-through data during method integration
        4. Create a request model for API methods to ensure that the pass-through data format complies with application rules
        5. Deploy the API Gateway to a stage and validate the results using the API endpoint
    11. Module 11: Building a Modern Application
      1. Describe the challenges with traditional architectures
      2. Describe the microservice architecture and benefits
      3. Explain various approaches for designing microservice applications
      4. Explain steps involved in decoupling monolithic applications
      5. Demonstrate the orchestration of Lambda Functions using AWS Step Functions
    12. Module 12: Granting Access to Your Application Users
      1. Analyze the evolution of security protocols
      2. Explore the authentication process using Amazon Cognito
      3. Manage user access and authorize serverless APIs
      4. Observe best practices for implementing Amazon Cognito
      5. Demonstrate the integration of Amazon Cognito and review JWT tokens
      6. Lab 6: Capstone – Complete the Application Build
        1. Create a Userpool and an Application Client for your web application using
        2. Add new users and confirm their ability to sign-in using the Amazon Cognito CLI
        3. Configure API Gateway methods to use Amazon Cognito as an authorizer
        4. Verify JWT authentication tokens are generated during API Gateway calls
        5. Develop API Gateway resources rapidly using a Swagger importing strategy
        6. Set up your web application frontend to use Amazon Cognito and API Gateway
        7. configurations and verify the entire application functionality
    13. Module 13: Deploying Your Application
      1. Identify risks associated with traditional software development practices
      2. Understand DevOps methodology
      3. Configure an AWS SAM template to deploy a serverless application
      4. Describe various application deployment strategies
      5. Demonstrate deploying a serverless application using AWS SAM
    14. Module 14: Observing Your Application
      1. Differentiate between monitoring and observability
      2. Evaluate why observability is necessary in modern development and key components
      3. Understand CloudWatch’s part in configuring the observability
      4. Demonstrate using CloudWatch Application Insights to monitor applications
      5. Demonstrate using X-Ray to debug your applications
      6. Lab 7: Observe the Application Using AWS X-Ray
        1. Instrument your application code to use AWS X-Ray capabilities
        2. Enable your application deployment package to generate logs
        3. Understand the key components of an AWS SAM template and deploy your application

    Remote Learning

    This course is available for "remote" learning and will be available to anyone with access to an internet device with a microphone (this includes most models of computers, tablets). Classes will take place with a "Live" instructor at the date/times listed below.

    Upon registration, the instructor will send along additional information about how to log-on and participate in the class.

    Refund Policy

    A student who cancels within 7 days of signing the enrollment agreement but before instruction begins receives all monies returned with the exception of the non-refundable registration fee.

    Thereafter, a student will be liable for:

    • The non-refundable registration fee of $100 plus
    • The cost of any textbooks or supplies accepted plus
    • Tuition liability as of the student's last date of physical attendance
    If Termination Occurs

    • Prior to or during the first week - 0% Penalty
    • During the second week - 25% Penalty
    • During the third week - 50% Penalty
    • During the fourth week - 75% Penalty
    • After the fourth week - 100% Penalty

    The failure of a student to notify CourseHorse in writing of withdrawal may delay a refund of tuition.

    Reviews of Classes at NetCom Learning (16)

    Similar Classes

    Benefits of Booking Through CourseHorse

    • Booking is safe. When you book with us your details are protected by a secure connection.
    • Lowest price guaranteed. Classes on CourseHorse are never marked up.
    • This class will earn you 20250 points. Points give you money off your next class!

    Questions & Answers (0)

    Get quick answers from CourseHorse and past students.

    NetCom Learning

    NetCom Learning delivers top-quality training and certification solutions to businesses, individuals and government agencies.

    Experience

    Since its inception in 1998, NetCom has trained over 95 percent of the Fortune 500, serviced over 23,000 business customers, and advanced the skills and careers of over...

    Read more about NetCom Learning

    CourseHorse Approved

    This school has been carefully vetted by CourseHorse and is a verified Online educator.

    NetCom Learning

    Give This Course as a Gift Card

    • Thousands of classes
    • No expiration
    • Unique and memorable gifts for any occasion
    • Personalized
    • Explore a passion, gain a new skill, discover a new hobby, engage in a memorable experience
    • Instant delivery
    • Lock in a price with the Inflation Buster Gift Card Price Adjuster™

    Buy a Gift Card

    Book this Class as a Group Event

    Booking this class for a group? Find great private group events

    Or see all Professional Group Events

    Explore group events and team building activities ranging from cooking, art, escape rooms, trivia, and more.

    CourseHorse Gift Cards

    • Creative & unique gift for any occasion
    • Thousands of classes & experiences
    • No expiration date
    • Instant e-delivery (or choose a date)
    • Add a personalized message
    • Lock in a price with the Inflation Buster Gift Card Price Adjuster™
    Buy a Gift Card
    gift card with the CourseHorse logo gift card with the CourseHorse logo
    Loading...