我想使用 Boto3 更改 aws-ec2 实例类型(例如,从微型到大型,反之亦然等)。更改 ec2-instances 的实例类型时需要注意哪些因素。这是我的代码:
def get_ec2_boto3_connection(region, arn):
sess = Boto3Connecton.get_boto3_session(arn)
ec2_conn = sess.client(service_name='ec2', region_name=region)
return ec2_conn
def change_instance_type(arn,region):
ec2_conn=get_ec2_boto3_connection(region,arn)
ec2_conn.modify_instance_attribute(InstanceId=id,Attribute='instanceType'InstanceType={
'Value': 'm4.large'
})
在更改 ec2 实例的实例类型之前,需要注意哪些责任因素?