AWS#Boto3#Python#Pycharm 썸네일형 리스트형 AWS Boto3 <> Python 사용법 AWS 리소스에 대한 Boto3 API 학습에 좋은 링크 공유 테스트 코드 참조 import boto3 def create_ec2_instance(): try: print("Creating EC2 instance junshae") resource_ec2 = boto3.client("ec2") resource_ec2.run_instances( ImageId="생성하려는 이미지 ID ex) ami-~~~1137", MinCount=1, MaxCount=1, InstanceType="t2.micro", KeyName="키페어 값" ) except Exception as e: print(e) create_ec2_instance() 링크주소 : https://www.youtube.com/watch?v=ijPOev.. 더보기 이전 1 다음