aws configureの読み込み
export AWS_CONFIG_FILE="ファイル"
instance ID 取得
INSID=`ssh サーバ 'curl http://169.254.169.254/latest/meta-data/instance-id/'`
再起動しないでAMIを取得して、結果をファイルに吐き出す
aws ec2 --region ap-northeast-1 \
create-image --instance-id インスタンスID \
--name AMIのタグName-$(date +%Y-%m-%d_%H%M%S) \
--description 'created by '$(date +%Y-%m-%d_%H%M%S) \
--no-reboot
作成したAMIのNameタグに名前入れる
aws ec2 create-tags --resources AMIID --tags Key=Name,Value=TAGにつける名前-$(date +%Y-%m-%d_%H%M%S)