есть кто-нибудь подсказка, как мне преобразовать! Ref und! Sub из CloudFormation в serverless.yml.
resources:
Resources:
AthenaCreateDatabaseQuery:
Type: 'AWS::Athena::NamedQuery'
Properties:
Description: Run this query to initialize the Athena database
QueryString: "CREATE DATABASE IF NOT EXISTS $(self:custom.etlDatabase};"
Database: ${self:custom.etlDataBase}
- В Cloudformation свойство QueryString начинается с! Sub и
свойство базы данных с! Ref.
Спасибо, Кристиан