Examples
list-buckets
create-bucket
delete-bucket
aws s3api list-buckets --profile=impossiblecloud --endpoint-url=https://us-west-1.storage.impossibleapi.net --region us-west-1
aws s3api create-bucket --profile=impossiblecloud --endpoint-url=https://us-west-1.storage.impossibleapi.net --bucket="my-new-bucket" --region us-west-1
aws s3api delete-bucket --profile=impossiblecloud --endpoint-url=https://us-west-1.storage.impossibleapi.net --bucket="my-new-bucket" --region us-west-1
list-objects
list-objects-v2
list-object-versions
get-object
aws s3api list-objects --profile=impossiblecloud --endpoint-url=https://us-west-1.storage.impossibleapi.net --region us-west-1 --bucket="my-new-bucket"
aws s3api list-objects-v2 --profile=impossiblecloud --endpoint-url=https://us-west-1.storage.impossibleapi.net --region us-west-1 --bucket="my-new-bucket"
aws s3api list-object-versions --profile=impossiblecloud --endpoint-url=https://us-west-1.storage.impossibleapi.net --region us-west-1 --bucket="my-new-bucket"
aws s3api get-object --profile=impossiblecloud --endpoint-url=https://us-west-1.storage.impossibleapi.net --region us-west-1 --bucket="my-new-bucket" --key="myfile.txt" "myfile.txt"
get-bucket-cors
put-bucket-cors
delete-bucket-cors
aws s3api get-bucket-cors --profile=impossiblecloud --endpoint-url=https://us-west-1.storage.impossibleapi.net --region us-west-1 --bucket="my-new-bucket"
aws s3api put-bucket-cors --profile=impossiblecloud --endpoint-url=https://us-west-1.storage.impossibleapi.net --region us-west-1 --cors-configuration file://cors.json --bucket="my-new-bucket"
aws s3api delete-bucket-cors --profile=impossiblecloud --endpoint-url=https://us-west-1.storage.impossibleapi.net --region us-west-1 --bucket="my-new-bucket"
Last modified 3mo ago