S3

Aws S3 Access Point

aws sts get-caller-identity aws s3control list-access-points --account-id 46569194568 aws s3control create-access-point --name my-access-point --account-id 46569194568 --bucket wubigo aws s3control get-access-point --account-id "46569194568" --name my-access-point { "Name": "my-access-point", "PublicAccessBlockConfiguration": { "IgnorePublicAcls": true, "BlockPublicPolicy": true, "BlockPublicAcls": true, "RestrictPublicBuckets": true }, "CreationDate": "2019-12-04T14:24:38Z", "Bucket": "wubigo", "NetworkOrigin": "Internet" }

Aws S3 Data Lake

https://medium.com/people-ai-engineering/building-a-data-lake-in-aws-9c1fb3876e23 https://towardsdatascience.com/building-a-data-pipeline-from-scratch-on-aws-35f139420ebc

创业公司IT云服务系列之数据存储

邮枪Concept plan(免费用户并增加一张信用卡)额度介绍 每月免费发送1万封邮件,超过1万封的邮件开始收费,$0.5//1000封 接收邮件免费 支持一千个定制域名 可以向任何邮箱地址发送而不用授权 创建发送账号 接收邮件

Aws S3 Web Hosting

创建BUCKET 使用两种方式之一创建BUCKET terraform git clone https://github.com/wubigo/iaas cd s3 terraform apply awscli aws s3 website s3://s.wubigo.com/ --index-document index.html --error-document 404.html aws s3api put-bucket-policy --bucket s.wubigo.com --policy file://policy.json 确认配置 aws s3api get-bucket-website --bucket s.wubigo.com { "IndexDocument": { "Suffix": "index.html" }, "ErrorDocument": { "Key": "404.html" } } 配置DNS C记录 查看S3 Website Endpoints: s.wubigo.com.s3-website-ap-northeast-1.amazonaws.com CNAME Record s s.wubigo.com.s3-website-ap-northeast-1.amazonaws.com 上传站点内容 aws s3 cp wubigo.github.io s3://s.wubigo.com/ --recursive