Question 173:
A company has a requirement to create a DynamoDB table. The company’s software architect has provided the following CLI command for the DynamoDB table aws dynamodb create-table \ --table-name Customers \ --attribute-definitions \ AttributeName=ID,AttributeType=S \ AttributeName=Name,AttributeType=S \ --key-schema \ AttributeName=ID,KeyType=HASH \ AttributeName=Name,KeyType=RANGE \ --provisioned-throughput \ ReadCapacityUnits=10,WriteCapacityUnits=5 \ --sse-specification Enabled=true Which of the following has been taken care of from a security perspective from the above command?
Answer options:
A.Since the ID is hashed, it ensures the security of the underlying table. B.The above command ensures data encryption at rest for the Customer table. C.The above command ensures data encryption in transit for the Customer table. D.The right throughput has been specified from a security perspective.