I am very new to aws. I was trying to create a database table by running following command: ``
aws dynamodb create-table --table-name pizza-order --attribute-definitions AttributeName=orderId, AttributeType=S --key-schema AttributeName=orderId,keyType=HASH --provisioned-throughput ReadCapacityUnit=1,WriteCapacityUnit=1 --region us-east-2 --query TableDescription.TableArn --output text
``
But I am getting a error like this: Error parsing parameter '--attribute-definitions': Expected: '', received: '' for input: AttributeName=orderId,
orderId and AttributeType and its KeyType,and ReadCapacityUnits same goes for WriteCapacityUnitsand why are you using--query TableDescription.TableArn --output textwhat you want to achieve with ``query option