Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
AWS Cloud Computing Concepts and Tech Analogies

You're reading from   AWS Cloud Computing Concepts and Tech Analogies A guide to understand AWS services using easy-to-follow analogies from real life

Arrow left icon
Product type Paperback
Published in Apr 2023
Publisher Packt
ISBN-13 9781804611425
Length 358 pages
Edition 1st Edition
Tools
Arrow right icon
Authors (3):
Arrow left icon
Marco Tamassia Marco Tamassia
Author Profile Icon Marco Tamassia
Marco Tamassia
Ashish Prajapati Ashish Prajapati
Author Profile Icon Ashish Prajapati
Ashish Prajapati
Juan Carlos Ruiz Juan Carlos Ruiz
Author Profile Icon Juan Carlos Ruiz
Juan Carlos Ruiz
Arrow right icon
View More author details
Toc

Table of Contents (22) Chapters Close

Preface 1. Part 1: Cloud Infrastructure and Core Services
2. Chapter 1: Understanding Cloud Computing – Demystifying the Cloud FREE CHAPTER 3. Chapter 2: Global Infrastructure behind Cloud Platforms – What Is the Cloud Made of? 4. Chapter 3: Computing – In Cloud We Trust, Everything Else We Compute 5. Chapter 4: Storage – Where Should I Keep My Data and Maybe Publish It? 6. Chapter 5: Networking – So, How Do I Get Inside, Outside, and Across the Cloud? 7. Part 2: Platform Services
8. Chapter 6: Databases – To SQL or Not to SQL for So Many Records… 9. Chapter 7: Identity and Access Management – Who Am I and What Can I Do? 10. Chapter 8: Monitoring – Is Big Brother Watching? 11. Chapter 9: Scalability – I Scale to the Moon and Back 12. Part 3: Application Services
13. Chapter 10: Automation – Look, My Infrastructure Is in Code! 14. Chapter 11: Decoupled Architectures – in Space and Time 15. Chapter 12: Containers – Contain Yourself and Ship Some Containers 16. Chapter 13: Serverless – So, Where Are My Servers? 17. Chapter 14: Caching – Microseconds Latency: Why Are We Always in a Rush? 18. Chapter 15: Blockchain – Who Watches the Watchmen? 19. Chapter 16: What the Future Holds 20. Index 21. Other Books You May Enjoy

Conventions used

This book is mostly written in the form of dialog. Every time there is a person who is directly speaking with someone else, you will see the following format used:

<visual icon of the speaker> <name of the speaker>: <sentence>

Here is an example:

A picture containing text

Description automatically generatedBerta: Oh, that was cool!

When people don’t talk to each other directly, it is the author that is speaking to you as a voiceover/narration. This is simply represented by a paragraph without any visual next to it.

Here is an example:

When Berta heard what Alex said, she was very excited.

There are also a number of text conventions used throughout this book.

Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “Notice the Get-RedisKey or Add-RedisKey commands.”

A block of code is set as follows:

SELECT
    VIN,
    Specs.EngSize,
    Specs.HP
FROM vehicles
WHERE type = 'Truck'

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

Function BackupTheFiles
{
   $SourceB="SourceBucket"; $DestB="DestBucket"
   $Files = Get-S3Object -BucketName $SourceB
   Foreach ($File in $Files)
   {
      Copy-S3Object -BucketName $SourceB       `
                    -Key $File.Key             `
                    -DestinationKey $File.Key  `
                    -DestinationBucket $DestB
   }
   Publish-SNSMessage -Message "Finished" -TopicARN $SomeTopic
}

Any command-line input or output is written as follows:

aws s3api list-objects --bucket jcanalytics 

Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “The container image we have built can now be tagged and, finally, pushed to a location called a container registry. ”

Tips or important notes

Appear like this.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image