extracting AWS S3 bucket arn(feat. ChatGPT 3.5)

Photo by Waldemar on Unsplash

extracting AWS S3 bucket arn(feat. ChatGPT 3.5)

AWS/Amazon S3

  • outline

S3 ARN is unique information of AWS resources and is useful in AWS CLI, but S3 bucket ARN cannot be extracted through normal AWS CLI for S3.

  • how-to
aws s3 ls | awk '{print $3}' | sed 's/^/arn:aws:s3:::/'
  • ChatGPT3.5 (X)