AWS SES 控制台上是否有一个地方可以查看您何时更新了电子邮件模板?
Is there a place on the AWS SES console to see when you updated a email template?
他们在模板旁边列出了创建日期,是否有我可以看到上次更新时间的地方?
遗憾的是,目前没有提供此类功能。如果您在 AWS CLI 中调用 list-templates
操作,您可以看到只有 CreatedTimestamp
存储在模板元数据中。目前,最后更新日期未存储在元数据级别。
aws ses list-templates
{
"TemplatesMetadata": [
{
"CreatedTimestamp": "2020-01-17T11:44:05.147Z",
"Name": "Template-Name"
}
]
}
他们在模板旁边列出了创建日期,是否有我可以看到上次更新时间的地方?
遗憾的是,目前没有提供此类功能。如果您在 AWS CLI 中调用 list-templates
操作,您可以看到只有 CreatedTimestamp
存储在模板元数据中。目前,最后更新日期未存储在元数据级别。
aws ses list-templates
{
"TemplatesMetadata": [
{
"CreatedTimestamp": "2020-01-17T11:44:05.147Z",
"Name": "Template-Name"
}
]
}