aws-s3apiCrea ed elimina bucket Amazon S3 e modifica le proprietà del bucket. Maggiori informazioni: https://docs.aws.amazon.com/cli/latest/reference/s3api/.
aws s3api create-bucket --bucket {{nome_bucket}} --region {{regione}} --create-bucket-configuration LocationConstraint={{regione}}
aws s3api delete-bucket --bucket {{nome_bucket}}
aws s3api list-buckets
aws s3api list-objects --bucket {{nome_bucket}} --query '{{Contents[].{Key: Key, Size: Size}}}'
aws s3api put-object --bucket {{nome_bucket}} --key {{object_key}} --body {{percorso/del/file}}
aws s3api get-object --bucket {{nome_bucket}} --key {{object_key}} {{percorso/del/file_output}}
aws s3api put-bucket-policy --bucket {{nome_bucket}} --policy file://{{percorso/del/bucket_policy.json}}
aws s3api get-bucket-policy --bucket {{nome_bucket}} --query Policy --output {{json|table|text|yaml|yaml-stream}} > {{percorso/del/bucket_policy}}