Amazon S3 버킷을 생성 및 삭제하고 버킷 속성을 편집. 더 많은 정보: https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3api/index.html.
aws s3api create-bucket --bucket {{버킷_이름}} --region {{리전}} --create-bucket-configuration LocationConstraint={{리전}}
aws s3api delete-bucket --bucket {{버킷_이름}}
aws s3api list-buckets
aws s3api list-objects --bucket {{버킷_이름}} --query '{{Contents[].{Key: Key, Size: Size}}}'
aws s3api put-object --bucket {{버킷_이름}} --key {{object_key}} --body {{path/to/file}}
aws s3api get-object --bucket {{버킷_이름}} --key {{객체_키}} {{경로/대상/출력_파일}}
aws s3api put-bucket-policy --bucket {{버킷_이름}} --policy file://{{경로/대상/버킷_정책.json}}
aws s3api get-bucket-policy --bucket {{버킷_이름}} --query Policy --output {{json|table|text|yaml|yaml-stream}} > {{경로/대상/버킷_정책}}