Which of the following is the correct syntax to define a partition key named 'OrderId' in a DynamoDB table using AWS CLI?
Aaws dynamodb create-table --table-name Orders --key-schema AttributeName=OrderId,KeyType=RANGE --attribute-definitions AttributeName=OrderId,AttributeType=N --provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5
Baws dynamodb create-table --table-name Orders --attribute-definitions AttributeName=OrderId,AttributeType=S --key-schema AttributeName=OrderId,KeyType=HASH --provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5
Caws dynamodb create-table --table-name Orders --attribute-definitions AttributeName=OrderId,AttributeType=BS --key-schema AttributeName=OrderId,KeyType=HASH --provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5
Daws dynamodb create-table --table-name Orders --attribute-definitions AttributeName=OrderId,AttributeType=Z --key-schema AttributeName=OrderId,KeyType=HASH --provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5