Cloud Wave
[Cloud Wave] BOTO3를 이용하여 EC2 인스턴스 종료, 생성
BOTO3 boto3는 Python용 AWS SDK이다. Boto3를 사용하면 Python 애플리케이션, 라이브러리 또는 스크립트를 Amazon S3, Amazon EC2, Amazon DynamoDB 등 AWS 서비스와 쉽게 통합할 수 있다. boto3 api list https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/index.html BOTO3를 이용한 실행중인 EC2 가져오기 import boto3 client = boto3.client('ec2') instance_tags = client.describe_instances( Filters = [ { 'Name': 'tag:Name', "Values" : ['smy..