Boto3を使ってAWSインスタンスを停止
AWSのインスタンスを停止する処理をBoto3で書きました。
タグを取得してリストをとってきて、グループで停止やLambdaを使って停止するなど実装していきたいと思います。
せっかく作ったのでブログにアップしてみます。
# -*- coding: utf-8 -*-
# import
import boto3
from boto3.session import Session
ec2 = boto3.client('ec2')
InstanceId = 'インスタンスID'
# def
def ec2_stop():
response = ec2.stop_instances(
InstanceIds=[
InstanceId
]
)
# Main
if __name__ == "__main__":
ec2_stop()
Author And Source
この問題について(Boto3を使ってAWSインスタンスを停止), 我々は、より多くの情報をここで見つけました https://qiita.com/handa3/items/a0c2abd3460852b6fca0著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .