Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
AWS Certified Developer Associate Certification and Beyond
AWS Certified Developer Associate Certification and Beyond

AWS Certified Developer Associate Certification and Beyond: A comprehensive guide to help you succeed in the AWS DVA-C02 certification exam

Arrow left icon
Profile Icon Rajesh Daswani Profile Icon Dorian Richard
Arrow right icon
€18.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.7 (13 Ratings)
Paperback Jul 2024 710 pages 1st Edition
eBook
€20.98 €29.99
Paperback
€37.99
Subscription
Free Trial
Renews at €18.99p/m
Arrow left icon
Profile Icon Rajesh Daswani Profile Icon Dorian Richard
Arrow right icon
€18.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.7 (13 Ratings)
Paperback Jul 2024 710 pages 1st Edition
eBook
€20.98 €29.99
Paperback
€37.99
Subscription
Free Trial
Renews at €18.99p/m
eBook
€20.98 €29.99
Paperback
€37.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

AWS Certified Developer Associate Certification and Beyond

Securing Access with AWS Identity and Access Management

Protecting AWS-hosted applications from unauthorized access is of paramount importance for any business. As an organization, you must ensure that only authorized entities can authenticate against your workloads. Furthermore, those entities must only be permitted to create and manage resources and perform tasks for which they are authorized. This concept is the principle of least privilege (POLP) and is fundamental to developing a secure environment. This chapter will teach you why authentication and authorization services are crucial. You will understand the importance of providing various access options to authenticate internal users and, where required, offer anonymous public access depending on the application use case.

In this chapter, you will learn about one of the foundational security services offered by AWS, identity and access management (IAM). You will learn how to create users, groups, and roles and how to grant...

Introduction to IAM

Every organization has its unique set of tools, systems, environments, projects, and core functions. Within an organization, there exist many groups of people, departments, and business units that share the same services. However, each group will require varying levels of access to those services depending on their function and role within the organization.

For example, developers will require access to development environments that allow them to experiment and design new application features, whereas their access to production environments must be restricted. Similarly, junior system administrators should only be allowed to execute certain tasks and not have full administrative rights on critical workloads.

In this section, you will learn about AWS IAM and see how it may be used to implement crucial elements of cloud security. AWS IAM is a fully managed service that can help you define who or what can access your AWS account, what services can be accessed...

Improving Your Security Posture with MFA

MFA is a security feature that enhances the authentication process by requiring users to input a six-digit token in addition to their usernames and passwords. AWS strongly recommends enabling MFA for your root user account and IAM users to increase security.

When MFA is enabled, a trusted source must provide an authentication code to access the Management Console. MFA can be set up for API calls to AWS and user console logins using a hardware- or software-based (virtual) MFA device.

AWS offers the Universal 2nd Factor (U2F) as an MFA option based on an open authentication standard. U2F can use specialized USB keys or near-field communication (NFC) devices such as smart card technology, but AWS only supports USB-based U2F and not NFC devices for MFA.

For more details on U2F, feel free to review the information at https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_mfa_enable_u2f.hml.

Security Token-Based MFA

Users must...

Accessing AWS Accounts Using Identity Federation with SAML 2.0 and Microsoft AD

In this section, we discuss another option that leverages an existing IdP: Microsoft AD and SAML 2.0 for authentication with your AWS account. SAML 2.0 is an open standard for exchanging authentication and authorization tokens between an IdP such as Microsoft AD FS and a service provider (SP), in this case, AWS. SAML 2.0 is often used to facilitate single-sign-on (SSO) capabilities, which enables users to access multiple services with a single set of credentials without having to log in separately to each service.

Many businesses use an AD environment to manage authentication and authorization for on-premises-hosted services. In large organizations with thousands to millions of users, their credentials, permission policies, and access across multiple platforms can become increasingly difficult to manage. Identity federation enables you to grant permissions to external identities to use the AWS Management...

Using Web Identity Federation for Application Authentication

Most web and mobile applications require some form of authentication and authorization at the application layer before an end user can use its services.

In the case of the new Todo List application, customers will need to sign up for a subscription. Next, to ensure that only valid customers can access this application, a sign-in process will need to be built as part of the authentication and authorization security feature of the application.

Developing a database of users and verifying their credentials is a crucial step in any application’s development life cycle. However, storing credentials data within the application code or on devices is highly insecure and risky. To address this issue, Amazon recommends using web identity federation for web and mobile application authentication workflows. This allows applications to request temporary security credentials dynamically from an IdP, and an IAM role can generate...

Application Authentication and Authorization with Amazon Cognito

Amazon Cognito is an identity service for your web and mobile applications. The service allows you to create a user directory or federate with external IdPs such as Google, Amazon, and Facebook to name a few. The internal directory (or external IdP) is used to verify a user’s identity and authorize their access to your application. This service removes the overhead associated with trying to create your own custom identity service for your application.

Amazon Cognito comprises two key components, which can either be used independently or in tandem. We discuss these next.

Amazon Cognito User Pools

Amazon Cognito user pool is a user directory service that offers user creation, management, and authentication services for your applications. End users can sign up for a user account, which results in creating a user profile. You can create an independent user directory hosted in Amazon Cognito and use OIDC-generated...

Overview of the AWS IAM Identity Center

IAM Identity Center is designed to help centrally create and manage your workforce identities. This service is really an overlay of IAM and AWS Single Sign-On services. With the IAM Identity Center, you can use the default internal AWS IdP or connect and synchronize to an external IdP such as Microsoft AD Domain Services. This makes granting SSO capabilities much more straightforward than standard IAM.

You can use multi-account permissions to assign users access to all AWS accounts within AWS Organizations. This is a much easier approach than trying to configure cross-account access and multiple IAM roles to allow users from one AWS account access to other AWS accounts within your organization.

With the IAM Identity Center, you can also assign access to applications that integrate with the Identity Center or third-party applications that offer SAML 2.0 integration. Several use cases exist for using the IAM Identity Center instead of AWS...

Exercise 2.1 – Creating an IAM User and an IAM Group within your Development Account

In this exercise, you will create an IAM user using your existing AWS development account, which you created in the previous chapter. This IAM user will have both console and programmatic access to AWS This user will be utilized in the subsequent exercises throughout this study guide, providing practical experience and aiding you in preparing for the AWS Certified Developer Associate exam. Follow these steps to create an IAM user and an IAM group within your development account:

  1. Log into your AWS development account, which was created in Chapter 1, Introduction to AWS Accounts and Global Infrastructure. You will be logging in as the root user, as you do not have any IAM users created.
  2. In the top search bar, search IAM, and from the drop-down list that appears, select the IAM service. You will then be taken to the IAM dashboard.
Figure 2.10 – Use the search bar to search for the AWS IAM service

Figure 2.10 –...

Technical Requirements

To complete all upcoming project tasks, ensure you log into your AWS Developer Account as the IAM user Alice.

Project Task 2.1 – Creating an Amazon Cognito User Pool for the Todo List Application

In this project task, you will start working on the Developer project that we discussed in the previous chapter. As discussed, you will work with several AWS services and create multiple AWS resources designed to host and manage the application for our fictitious client, Todo Plus Limited.

In this task, you will create an Amazon Cognito user pool that will be used to authenticate and authorize end-user sign-up and sign-in capabilities for the application.

The following diagram highlights the area of the overall architectural plan you will work on in this project task.

Figure 2.16 – Project Task – Create Cognito user pool

Figure 2.16 – Project Task – Create Cognito user pool

  1. Log in to your AWS development account as the user Alice, which you created in the last exercise.
  2. Navigate to the Cognito service by searching for it in the top search bar.
  3. Click the Create user pool button on the...

Summary

In this chapter, you have learned about the AWS IAM service. AWS IAM offers authentication and authorization services to allow you to define who or what can access your AWS accounts, its services, and resources. You have covered the concepts of IAM users, groups, and roles, and how these features of IAM can help you address different access requirements.

Amazon Cognito was also discussed, which allows you to build an authentication and authorization service for your web and mobile applications. With Amazon Cognito, you can create a user pool to host your own user directory or federate with external IdPs such as those that are OIDC and SAML 2.0 compatible.

Finally, we looked at the new AWS Identity Center, which is a more streamlined process of managing your workforce identities and offers SSO features with external IdPs, such as Microsoft AD.

In the next chapter, we introduce you to the different types of storage services and specifically focus on Amazon S3, which...

Exam Readiness Drill – Chapter Review Questions

Apart from a solid understanding of key concepts, being able to think quickly under time pressure is a skill that will help you ace your certification exam. That is why working on these skills early on in your learning journey is key.

Chapter review questions are designed to improve your test-taking skills progressively with each chapter you learn and review your understanding of key concepts in the chapter at the same time. You’ll find these at the end of each chapter.

How to Access These Materials

To learn how to access these resources, head over to the chapter titled Chapter 17, Accessing the Online Resources.

To open the Chapter Review Questions for this chapter, perform the following steps:

  1. Click the link – https://packt.link/DVAC02_CH02.

    Alternatively, you can scan the following QR code (Figure 2.26):

Figure 2.26 – QR code that opens Chapter Review Questions for logged-in users

Figure 2.26 – QR code that opens Chapter Review Questions...

Working On Timing

Target: Your aim is to keep the score the same while trying to answer these questions as quickly as possible. Here’s an example of how your next attempts should look like:

Attempt

Score

Time Taken

Attempt 5

77%

21 mins 30 seconds

Attempt 6

78%

18 mins 34 seconds

Attempt 7

76%

14 mins 44 seconds

Table 2.1 – Sample timing practice drills on the online platform

Note

The time limits shown in the above table are just examples. Set your own time limits with each attempt based on the time limit of the quiz on the website.

With each new attempt, your score should stay above 75% while your “...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Gear up for a thriving career in AWS development with this hands-on guide
  • Put your newfound knowledge into action with practical labs
  • Develop, deploy, and debug cloud-based applications using AWS core services
  • Purchase of this book unlocks access to web-based exam prep resources including mock exams, flashcards, exam tips, and the eBook PDF

Description

Becoming an AWS Certified Developer is a rewarding, but challenging endeavor. With AWS’ vast capabilities and abundant resources, finding the right study material and a clear path to success can be daunting. AWS Certified Developer Associate Certification and Beyond is a one-stop guide that not only sets you up for success in the exam, but also lays the foundations for a fulfilling career in the world's most popular cloud infrastructure. This in-depth guide covers everything you need to know to pass the AWS Certified Developer – Associate exam and allows you to test yourself as you go, with knowledge checks throughout the book. You will learn to configure Elastic Load Balancing for high availability, monitor your applications with CloudWatch, and integrate authentication with Amazon Cognito. Additionally, this book grants lifetime access to online exam resources, including mock exams with exam-like timers, detailed solutions, flashcards, and invaluable exam tips, all accessible across PCs, tablets, and smartphones. By the end, you'll be ready to ace the exam and elevate your AWS application development and management skills, positioning yourself for career advancement.

Who is this book for?

If you're an IT professional or a developer preparing to take the AWS Certified Developer Associate exam, this book is for you. Developers looking to build and manage their applications on the AWS platform will also find this book useful. No prior AWS experience is needed.

What you will learn

  • Host static website content using Amazon S3
  • Explore accessibility, segmentation, and security with Amazon VPC
  • Implement disaster recovery with EC2 and S3
  • Provision and manage relational and non-relational databases on AWS
  • Deploy your applications automatically with AWS Elastic Beanstalk
  • Use AWS CodeBuild, AWS CodeDeploy, and AWS CodePipeline for DevOps
  • Manage containers using Amazon EKS and ECS
  • Build serverless applications with AWS Lambda and AWS Cloud9

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jul 31, 2024
Length: 710 pages
Edition : 1st
Language : English
ISBN-13 : 9781801819299
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Jul 31, 2024
Length: 710 pages
Edition : 1st
Language : English
ISBN-13 : 9781801819299
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 106.97
AWS Certified Developer Associate Certification and Beyond
€37.99
Functional Programming in Go
€29.99
Data Engineering with AWS
€38.99
Total 106.97 Stars icon

Table of Contents

18 Chapters
Chapter 1: Introduction to AWS Accounts and Global Infrastructure Chevron down icon Chevron up icon
Chapter 2: Securing Access with AWS Identity and Access Management Chevron down icon Chevron up icon
Chapter 3: Understanding Object Storage with Amazon S3, Hybrid Storage, and Static Website Hosting Chevron down icon Chevron up icon
Chapter 4: Building Private Networks in the Cloud with Amazon VPC Chevron down icon Chevron up icon
Chapter 5: Understanding AWS Compute Services with Amazon EC2 and Storage Options Chevron down icon Chevron up icon
Chapter 6: Managing Multiple Datasets with AWS Relational and Non-Relational (NoSQL) Databases Chevron down icon Chevron up icon
Chapter 7: Building Application Solutions with High Availability, Elasticity, and Data Security Chevron down icon Chevron up icon
Chapter 8: Event-Driven Computing with AWS Lambda and Securing Access to Backend APIs with Amazon API Gateway Chevron down icon Chevron up icon
Chapter 9: Incorporating Edge Network Services to Connect to Your Application with Amazon CloudFront and Route 53 Chevron down icon Chevron up icon
Chapter 10: Designing Deployment Strategies with AWS Elastic Beanstalk Chevron down icon Chevron up icon
Chapter 11: Deploying a Multi-Tier Application Stack with Amazon ECS, Fargate, and EKS Chevron down icon Chevron up icon
Chapter 12: Getting to Grips with DevOps Using AWS CI/CD Tools Chevron down icon Chevron up icon
Chapter 13: Building Infrastructure Using Code with CloudFormation and the Cloud Development Kit (CDK) Chevron down icon Chevron up icon
Chapter 14: Designing Serverless Applications with AWS Serverless Application Model (SAM) and AWS AppSync Chevron down icon Chevron up icon
Chapter 15: Decoupling the Application Stack and Managing Data Ingestion Chevron down icon Chevron up icon
Chapter 16: Monitoring with Amazon CloudWatch and AWS CloudTrail Chevron down icon Chevron up icon
Chapter 17: Accessing the Online Practice Resources Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.7
(13 Ratings)
5 star 92.3%
4 star 0%
3 star 0%
2 star 0%
1 star 7.7%
Filter icon Filter
Top Reviews

Filter reviews by




Marc Anthony Aug 31, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book takes a practical approach by focusing on developing and deploying a real-world application for a fictitious company. Rather than just covering isolated topics, it integrates AWS services into a cohesive application, making the material more engaging and relevant.By following along, you'll not only prepare for the DVA-C02 exam but also gain hands-on experience that directly translates to real-world scenarios. It's a solid choice for anyone looking to deepen their understanding of AWS while also earning a certification.
Amazon Verified review Amazon
Dieter Sep 20, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
"AWS Certified Developer Associate Certification and Beyond" serves as a definitive guide for individuals aiming to excel in the AWS Certified Developer Associate exam while simultaneously acquiring hands-on experience. This book, authored by Rajesh Daswani and Dorian Richard, navigates through the intricate world of AWS with a clear, learner-friendly approach, making it an indispensable resource for aspiring and current developers alike.The book opens with a robust introduction to AWS accounts and global infrastructure, laying a solid foundation for understanding how AWS operates on a grand scale. This section is not just theoretical; it includes practical exercises that mirror real-world scenarios, helping readers to visualize how AWS services can be orchestrated in professional environments.A deep dive into AWS Identity and Access Management (IAM) provides crucial knowledge on securing access, a fundamental concern for all developers. This section breaks down complex security principles into digestible, implementable strategies, ensuring that readers grasp the importance of meticulous access controls and security measures.The exploration of object storage with Amazon S3, alongside static website hosting, offers practical insights into one of AWS's most versatile services. The detailed coverage of S3's functionalities—ranging from security enhancements to cost management—prepares readers to effectively utilize this service for diverse storage needs.Networking is demystified in the chapters dedicated to Amazon Virtual Private Cloud (VPC), where the book details how to construct and manage private networks within the AWS ecosystem. This segment is particularly beneficial for readers looking to enhance their understanding of networking principles applied in cloud environments.Lastly, the book does an excellent job of detailing event-driven computing using AWS Lambda, which is pivotal for developers looking to build scalable and responsive applications. This section not only covers the technicalities of Lambda but also integrates best practices for deploying serverless computing solutions effectively.Overall, "AWS Certified Developer Associate Certification and Beyond" is a well-structured, informative guide that offers a thorough educational journey through AWS's services, making it a valuable asset for professionals preparing for the AWS certification or enhancing their cloud development skills. The book's practical approach ensures that readers are not only prepared to pass the certification exam but are also ready to implement their knowledge in real-world situations.
Amazon Verified review Amazon
Kenneth Dolbow Aug 28, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I recently picked up "AWS Certified Developer Associate Certification and Beyond" as I prepare for the AWS OVA-C02 exam, and I must say, this book is an outstanding resource. As someone with no personal experience with AWS, I found this guide incredibly accessible and easy to understand.The authors truly shine with their deep knowledge and ability to introduce and teach complex concepts in a clear, engaging manner. They break down the material into digestible chunks, making it easier to grasp even the more challenging aspects of AWS.One of the features I particularly appreciate is the inclusion of flashcards and practice questions. Each chapter ends with practice questions that are perfect for testing your understanding right after you’ve learned new material. According to the Huberman Labs podcast on "Optimal Protocols for Studying and Learning," testing yourself shortly after learning enhances recall, and this book’s approach aligns perfectly with that principle.The flashcards and practice questions are invaluable tools for reinforcing your knowledge and ensuring you're fully prepared for the exam. They offer a practical way to gauge your progress and focus on areas that might need more review.Additionally, the book comes with a PDF version, which is a fantastic bonus. The digital copy allows you to take your learning on the go, making it easy to study whenever and wherever you have a moment.Overall, "AWS Certified Developer Associate Certification and Beyond" is a must-have for anyone pursuing the AWS OVA-C02 exam. It’s well-structured, easy to read, and packed with helpful tools to aid your study process. I’m confident this book will be a key asset in achieving my certification and deepening my understanding of AWS.
Amazon Verified review Amazon
Tiny Sep 12, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Exhaustive, step by step guide to prepare you for all the information required for an AWS CDA Cert and more. I really like the numerous screenshots. Even better, at the end of every lesson, there are links to chapter review questions to practice needed knowledge. The suggestions include how to study, and timings for long each section needs to take so you can practice accelerating your techniques.
Amazon Verified review Amazon
Rengarajan Sep 16, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Great book if you want to become a developer in AWS space, This book will be very useful for beginners who want to explore multiple components of AWS and its dependencies and gives a clear step by step instruction on how to go about creating/updating a resource and the exercises given at the end of the chapters are quite useful to clear the AWS developer exam. It covers encryption very well across KMS/S3/EBS/RDS and gives detailed diagrammatic steps on how to perform actions in AWS. I really enjoyed reading this and highly recommend this one to clear AWS developer exam
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.