{ "@context": "https://schema.org", "@type": "Organization", "name": "Brainscape", "url": "https://www.brainscape.com/", "logo": "https://www.brainscape.com/pks/images/cms/public-views/shared/Brainscape-logo-c4e172b280b4616f7fda.svg", "sameAs": [ "https://www.facebook.com/Brainscape", "https://x.com/brainscape", "https://www.linkedin.com/company/brainscape", "https://www.instagram.com/brainscape/", "https://www.tiktok.com/@brainscapeu", "https://www.pinterest.com/brainscape/", "https://www.youtube.com/@BrainscapeNY" ], "contactPoint": { "@type": "ContactPoint", "telephone": "(929) 334-4005", "contactType": "customer service", "availableLanguage": ["English"] }, "founder": { "@type": "Person", "name": "Andrew Cohen" }, "description": "Brainscape’s spaced repetition system is proven to DOUBLE learning results! Find, make, and study flashcards online or in our mobile app. Serious learners only.", "address": { "@type": "PostalAddress", "streetAddress": "159 W 25th St, Ste 517", "addressLocality": "New York", "addressRegion": "NY", "postalCode": "10001", "addressCountry": "USA" } }

AWS Product Fundamentals Flashcards

(4 cards)

1
Q

What is S3?

A

o S3 is a Global (not Region based) object storage platform that can be used to store objects in the form of text files, photos, audios, large binaries or any other object type
o Based on the concept of buckets ( = containers for objects), which needs to be unique at Global level
o S3 is a flat structure, so Folders are supported at a logical level only
o Storage capacity for Buckets is unlimited
o S3 Buckets cannot be attached to servers as disks, because that would require Block Storage, while S3 is Object Storage
o Default is 100 buckets per account, max 1,000 via support request (however, can create unlimited folders within a bucket)
o Object size can go from 0 to 5TB, but a bucket can store unlimited number of objects
o Objects are managed as key ( = name) and value ( = data) pairs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How many buckets per account are supported in S3, and what is the maximum size of an object?

A

o Default is 100 buckets per account, max 1,000 via support request (however, can create unlimited folders within a bucket)
o Object size can go from 0 to 5TB, but a bucket can store unlimited number of objects

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Can S3 be used as File Server / attached to a server as a disk?

A

o S3 Buckets cannot be attached to servers as disks, because that would require Block Storage, while S3 is Object Storage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is CloudFormation?

A

o CloudFormation is an Infrastructure as Code (IaC) product used to create, manage and remove infrastructure using JSON or YAML (via templates)
o Effective if you frequently deploy the same infrastructure or you require guaranteed consistent configuration
o 1. Templates: contain logical resources and configuration in JSON or YAML format
o 2. Stack: created, modified and deleted based on templates (up to 200 resources can be created)
o 3. Physical Resources: Stacks take Logical Resources from a Template and create, update or delete the corresponding Physical Resources in AWS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly