I'm working on a Serverless web application and I'm trying to create a CloudFormation YAML template for a DynamoDB table. The documentation says that each attribute in the table should follow the style below, where AttributeType can be either 'S', 'N' or 'B', for string, number or binary.
AttributeName: String
AttributeType: String
My table includes attributes that are maps. How do I include them in the template?