Каков правильный синтаксис для фильтрации по тегу в description-vpcs?
Я пытаюсь понять AWS EC2 Cli Call. Я хочу описать все VPC, а затем файлера в пользовательском теге (vpcname = myvpc, однако после попытки нескольких комбинаций я получаю противоречивые ошибки о формате и использовании --filters. Использование в качестве ссылки [http://docs.aws.amazon.com/cli/latest/reference/ec2/describe-vpcs.html][1]
aws --profile myProfile --регион eu-west-1 ec2 description-vpcs --фильтры vpcname, myvpc
Однако это возвращает
Error parsing parameter '--filters': should be: Key value pairs, where values are separated by commas, and multiple pairs are separated by spaces.
--filters Name=string1,Values=string1,string2 Name=string1,Values=string1,string2
так стараюсь
aws --profile myProfile --регион eu-west-1 ec2 описывает-vpcs --filters имя = имя_процесса, значения = myvpc
и он возвращается
A client error (InvalidParameterValue) occurred when calling the DescribeVpcs operation: The filter 'vpcname' is invalid
так пробуя несколько других комбинаций
aws --profile myProfile --region eu-west-1 ec2 describe-vpcs --filters tag :Name=vpcname,Values=myvpc
Error parsing parameter '--filters': should be: Key value pairs, where values are separated by commas, and multiple pairs are separated by spaces.
--filters Name=string1,Values=string1,string2 Name=string1,Values=string1,string2
Любой совет, как мне отформатировать этот запрос?