For example in bash you can do:
echo hello \
world
$ hello world
Is there a way to do that for long --filters when using the AWS CLI?
For example, the following command is quite long and can become bloated when doing complex filtering/lookups:
aws ssm get-inventory --filters "Key=AWS:InstanceInformation.PlatformName,Values=Ubuntu,Type=Equal" "Key=AWS:InstanceInformation.InstanceStatus,Values=Active,Type=Equal"
It would be better if you could do:
aws ssm get-inventory --filters "Key=AWS:InstanceInformation.PlatformName,Values=Ubuntu,Type=Equal" \
"Key=AWS:InstanceInformation.InstanceStatus,Values=Active,Type=Equal"
But I keep getting parsing errors when trying this.