ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

[AWS DA Guru] S3

2021-06-05 21:34:55  阅读:305  来源: 互联网

标签:use Guru S3 AWS object uploading different objects bucket


S3 File Size

  • Single S3 Object can range in size from 0 bytes to 5TB
  • Largest object that can be uploaded in a single PUT request is 5GB
  • For Objects larger than 100MB, customers should consider using Multipart upload capability.
  • Total volume of data and number of object you can store are unlimited

 

 

 

Bucket policies

Applied at Bucket Level

The permissions granted by the policy apply to all of the objects within the bucket.

Not Individual Objects

You cannot attach a bucket policy to an individual object.

Groups of Files

A group of files which need to be accessed by the same people

 

Principal: "*": Anyone can access.

 

S3 Bucket Access Control Lists (Bucket ACLs)

Access Control List

  • Applied at an object Level
  • We can define permissions for different objects within a bucket

Grant Access to Objects

  • We can define which accounts or groups are granted access and also the type of access. e.g. read, write, or full control.

Fine Grained Control

  • Grant a different type of access to different objects within the same bucket.
  • E.g to apply different permissions for different objects for different users and groups.

 

 

Enforcing Server Side Encryption

Console

Select the encryption setting in your S3 bucket. The easiest way, just a check box in the console

Bucket Policy

You can also enforce encryption using a bucket policy. This mothod does sometimes come up in exam.

 

x-amz-server-side-encryption

{
  "Id": "Policy1619722202508",
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "Stmt1619722201204",
      "Action": [
        "s3:PutObject"
      ],
      "Effect": "Deny",
      "Resource": "arn:aws:s3:::jtrterweqwerthyuyetwrwrt/*",
      "Condition": {
        "StringNotEquals": {
          "s3:x-amz-server-side-encryption": "aws:kms"
        }
      },
      "Principal": "*"
    }
  ]
}

What it does, Deny request if PUT request header doesn't have 

x-amz-server-side-encryption: aws:kms

Upload file:

 

Type have to be aws:kms because we have defined in JSON.

 

CORS

 

CloudFront

 

TTL

How to change default TTL: Using Invalidations to remove cache, you will be charged for this.

 


 

 

 

 

 

 

Amazon recommends that you use multipart uploading for the following use-cases:

If you're uploading large objects over a stable high-bandwidth network, use multipart uploading to maximize the use of your available bandwidth by uploading object parts in parallel for multi-threaded performance.

If you're uploading over a spotty network, use multipart uploading to increase resiliency to network errors by avoiding upload restarts.

You need to use multi-part upload for large files: In general, when your object size reaches 100 MB, you should consider using multipart uploads instead of uploading the object in a single operation.

 

A Single put request max size is 5 GB, but multi-part uplaod can accumlate multi 5 GB upload.

 

标签:use,Guru,S3,AWS,object,uploading,different,objects,bucket
来源: https://www.cnblogs.com/Answer1215/p/14716445.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有