본문 바로가기
AWS

[Python] AWS EC2 인스턴스의 TYPE 출력

by freesunny 2019. 7. 14.

인스턴스 타입을 출력

import boto3

ec2 = boto3.resource('ec2', region_name='ap-southeast-1')

instance = ec2.Instance('i-04785a6d8530134b1')
print(instance.instance_type)