来自Cloudformation /无服务器的AWS SES模板

时间:2018-10-19 21:35:42

标签: amazon-cloudformation amazon-ses serverless-framework

我正在使用serverless framework来部署我的AWS堆栈,并且正在尝试将AWS SES模板添加到我的资源中。

但是,我一直从CloudFormation获取AWS::SES::Template的“无法识别的类型”。

这绝对是defined CloudFormation resource type,所以我不知道发生了什么。我见过描述SES模板的相同片段,这些片段应该可以工作,但对我而言却无效。任何想法可能是什么原因造成的?

我的serverless.yml中的部分如下:

resources:
  Resources:
    EmailNotificationTemplate:
      Type: AWS::SES::Template 
      Properties: 
        Template: 
          TemplateName: "test" 
          TextPart: "body text" 
          SubjectPart: "subject"

1 个答案:

答案 0 :(得分:0)

结果证明这是由于SES在我使用的区域中不可用。肯定会带有一条错误消息,例如“区域中不支持的类型”,但它却引发了通用的“无法识别的类型”。