Amazon CLI 没有 acm 服务

Amazon CLI 没有 acm 服务

我已使用以下命令在我的 Linux 实例中安装了 Amazon CLI:

sudo apt-get install awscli

但是当我显示帮助时,我只能看到以下服务:

autoscaling
cloudformation
cloudtrail
cloudwatch
configure
directconnect
dynamodb
ec2
elasticache
elasticbeanstalk
elastictranscoder
elb
help
iam
importexport
kinesis
opsworks
rds
redshift
route53
s3
s3api
ses
sns
sqs
storagegateway
sts
support
swf

但我需要 acm 服务。在我获得的版本中:

aws-cli/1.2.9 Python/3.4.3 Linux/3.13.0-92-generic

我知道我需要做什么?

答案1

不幸的是,您无法有效使用发行版提供的 aws cli,因为发行版维护者通常注重稳定性,因此提供的版本无法跟上 aws-cli 实用程序功能的前沿。如您所见...

AWS CLI 经常更新以支持新的服务和命令。

http://docs.aws.amazon.com/cli/latest/userguide/installing.html

您现在拥有的是 1.2.9 版本,2013 年底发布

您将需要使用点子或者捆绑安装程序

我想您可能首先想删除使用 apt-get 安装的内容。

相关内容