RANDOM_STRING=$(aws secretsmanager get-random-password \
--exclude-punctuation --exclude-uppercase \
--password-length 6 --require-each-included-type \
--output text \
--query RandomPassword)
aws s3api create-bucket --bucket awscookbook805-$RANDOM_STRING
aws s3 rm s3://awscookbook805-$RANDOM_STRING/sample_movie.mp4
aws s3api delete-bucket --bucket awscookbook805-$RANDOM_STRING
unset RANDOM_STRING
unset JOB_ID