エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
動いているEC2を全部問答無用で停止するLambda - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
動いているEC2を全部問答無用で停止するLambda - Qiita
import json import boto3 client = boto3.client('ec2') def lambda_handler(event, context): respons... import json import boto3 client = boto3.client('ec2') def lambda_handler(event, context): response = client.describe_instances( Filters=[ { 'Name': 'instance-state-code', 'Values': [ '16', ] }, ] ) targetInstances = [] for i in response['Reservations']: targetInstances.append(i['Instances'][0]['InstanceId']) if not targetInstances: return "nothing target instances" else: response = client.stop_ins