search directory

Search Commands

Search tools, operations, flags, and command strings. Results are capped for Worker performance.

Aws S3api Commands

16 aws-s3api entries

Limited to 100 results

Back to all tools
aws-s3api

Aws S3api Command: Add Object To Bucket

aws s3api put-object --bucket <bucket_name> --key <object_key> --body <path/to/file>
aws-s3api

Aws S3api Command: Apply Bucket Policy

aws s3api put-bucket-policy --bucket <bucket_name> --policy file://<path/to/bucket_policy.json>
aws-s3api

Aws S3api Command: Create Bucket

aws s3api create-bucket --bucket <bucket_name> --region <region> --create-bucket-configuration LocationConstraint=<region>
aws-s3api

Aws S3api Command: Create Bucket In Region

aws s3api create-bucket --bucket <bucket_name> --region <region> --create-bucket-configuration LocationConstraint=<region>
aws-s3api

Aws S3api Command: Create Bucket In Specific Region

aws s3api create-bucket --bucket <bucket_name> --region <region> --create-bucket-configuration LocationConstraint=<region>
aws-s3api

Aws S3api Command: Delete Bucket

aws s3api delete-bucket --bucket <bucket_name>
aws-s3api

Aws S3api Command: Download Bucket Policy

aws s3api get-bucket-policy --bucket <bucket_name> --query Policy --output <json|table|text|yaml|yaml-stream> > <path/to/bucket_policy>
aws-s3api

Aws S3api Command: Download Object From Bucket

aws s3api get-object --bucket <bucket_name> --key <object_key> <path/to/output_file>
aws-s3api

Aws S3api Command: Get Bucket Policy

aws s3api get-bucket-policy --bucket <bucket_name> --query Policy --output <json|table|text|yaml|yaml-stream> > <path/to/bucket_policy>
aws-s3api

Aws S3api Command: Get Object

aws s3api get-object --bucket <bucket_name> --key <object_key> <path/to/output_file>
aws-s3api

Aws S3api Command: List Buckets

aws s3api list-buckets
aws-s3api

Aws S3api Command: List Objects

aws s3api list-objects --bucket <bucket_name> --query '{{Contents[].{Key: Key, Size: Size}}}'
aws-s3api

Aws S3api Command: List Objects In Bucket

aws s3api list-objects --bucket <bucket_name> --query '{{Contents[].{Key: Key, Size: Size}}}'
aws-s3api

Aws S3api Command: List Objects Inside Bucket

aws s3api list-objects --bucket <bucket_name> --query '{{Contents[].{Key: Key, Size: Size}}}'
aws-s3api

Aws S3api Command: Put Bucket Policy

aws s3api put-bucket-policy --bucket <bucket_name> --policy file://<path/to/bucket_policy.json>
aws-s3api

Aws S3api Command: Put Object

aws s3api put-object --bucket <bucket_name> --key <object_key> --body <path/to/file>