Which of the following is the correct syntax to define a DynamoDB data source in AWS AppSync's CloudFormation template?
A"Type": "AWS::DynamoDB::Table", "Properties": {"TableName": "MyTableDS"}
B"Type": "AWS::Lambda::Function", "Properties": {"FunctionName": "MyTableDS"}
C"Type": "AWS::AppSync::Resolver", "Properties": {"DataSourceName": "MyTableDS"}
D"Type": "AWS::AppSync::DataSource", "Properties": {"Name": "MyTableDS", "Type": "AMAZON_DYNAMODB", "DynamoDBConfig": {"TableName": "MyTable"}}