AWS CLI - 未找到 AutoScalingGroup 名称 - 空

AWS CLI - AutoScalingGroup name not found - null

我正在尝试 运行 用于更新自动缩放组的 aws cli 命令,当我传入 ASG 名称时,响应是找不到 ASG 名称,但它 returns 'null' 作为传入内容的参考,您可以在此处的文档中找到更多信息:Documentation Link

AWS CLI 示例 update-auto-scaling-group --auto-scaling-group-name "name-of-the-asg" --min-size 4 --max-size 40

错误响应 An error occurred (ValidationError) when calling the UpdateAutoScalingGroup operation: AutoScalingGroup name not found - null

我尝试使用具有正确 json 语法的 json 文件,但我得到了同样的错误。

有谁知道此错误是否意味着 ASG 名称未在命令本身中注册,或者 ASG 名称是否已传入但未找到,因此 returns 未找到空值参考资料?

是否清楚此错误的含义以及是否有不同的方式来提出此请​​求。

问题是我遗漏了 --region 参数。一旦我添加了正确的区域,AWS CLI 命令就能够成功执行。