You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[AWS Simple Storage Service (S3)](https://aws.amazon.com/s3/) is a proprietary object storage solution that can store an unlimited number of objects for many use cases.
16
-
S3 is a highly scalable, durable and reliable service that we can use for various use cases: hosting a static site, handling big data analytics, managing application logs, storing web assets and much more!
18
+
S3 is a highly scalable, durable and reliable service that we can use for any use case involving file-based storage: hosting a static site, handling big data analytics, managing application logs, storing web assets and much more!
17
19
18
-
With S3, you have unlimited storage with your data stored in buckets.
19
-
A bucket refers to a directory, while an object is just another term for a file.
20
-
Every object (file) stores the name of the file (key), the contents (value), a version ID and the associated metadata.
21
-
You can also use S3 to host a static website, to serve static content.
22
-
It might include HTML, CSS, JavaScript, images, and other assets that make up your website.
20
+
With S3, objects are stored in buckets. A bucket is effectively a directory, while an object is a file. Every object (file) stores the name of the file (key), the contents (value), a version ID and the associated metadata. You can also use S3 to host to server static content as a static website.
21
+
The static content might include HTML, CSS, JavaScript, images, and other assets that make up your website.
23
22
24
23
LocalStack supports the S3 API, which means you can use the same API calls to interact with S3 in LocalStack as you would with AWS.
25
24
Using LocalStack, you can create and manage S3 buckets and objects locally, use AWS SDKs and third-party integrations to work with S3, and test your applications without making any significant alterations.
@@ -37,6 +36,18 @@ For this tutorial, you will need:
0 commit comments