我正在尝试将--profile与aws-cli一起使用
$ aws s3 ls --profile profile360
效果很好,但是:
$ aws dynamodb scan --table-name dev_eventsApi_EventsTable --output > c:\temp\hevo.txt --profile profile360
结果
usage: aws [options] <command> <subcommand> [<subcommand> ...] [parameters]
To see help text, you can run:
aws help
aws <command> help
aws <command> <subcommand> help
aws: error: argument --output: expected one argument
我遇到无法使用--profile
我在做什么错了?
答案 0 :(得分:2)
定义输出类型,例如text或json。试试这个。
aws dynamodb scan --table-name dev_eventsApi_EventsTable --output text --profile profile360 > c:\temp\hevo.txt