服务自动缩放 describe-scalable-targets not 运行

Service auto-scaling describe-scalable-targets not running

当前有一个集群,该集群具有基于此集群和负载均衡器/目标组创建的服务,使用 aws ecs create-service 在命令提示符下创建它,当 运行 命令描述我的可扩展目标时因为 aws describe-scalable-targets --resource-ids (fargate-service/default/fargate-clustr) 我收到一个错误 syntax error, unexpected token '(' 所以我假设我在尝试描述目标时输入了错误的语法。

在下面链接的站点上告诉我服务自动缩放 specifying the resource ID of the ECS service associated with the scalable target in Application Auto Scaling 我在我的 ECS 服务中找不到资源 ID?

我的范围是为我的集群中的任务创建自动缩放。

我遵循的可扩展目标命令 https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-auto-scaling.html#auto-scaling-IAM

注册目标的命令:

    --service-namespace ecs \
    --scalable-dimension ecs:service:DesiredCount \
    --resrouce-id fargate-service/default/fargate-cluster \
    --min-capacity 1 \
    --max-capacity 10

正确的命令应该是:

aws application-autoscaling  describe-scalable-targets --resource-ids fargate-service/default/fargate-clustr --service-namespace ecs