谁能告诉我是否可以在启动的AWS实例上使用Boto3执行Shell命令。
我在一些地方阅读过有关“ boto.manage.cmdshell”的信息,但Boto3不推荐使用。
感谢任何帮助。
此致苏拉卜
ssm_client = boto3.client('ssm') response = ssm_client.send_command( InstanceIds=['i-03#####'], DocumentName="AWS-RunShellScript", Parameters={'commands': ['start ecs']}, ) command_id = response['Command']['CommandId'] output = ssm_client.get_command_invocation( CommandId=command_id, InstanceId='i-03######', ) print(output)