diff --git a/doc_source/serverless-policy-template-list.md b/doc_source/serverless-policy-template-list.md
index 81e7294..47f09bf 100644
--- a/doc_source/serverless-policy-template-list.md
+++ b/doc_source/serverless-policy-template-list.md
@@ -66,6 +66,7 @@ The following are the available policy templates, along with the permissions tha
+ [SageMakerCreateEndpointPolicy](#sagemaker-create-endpoint-policy)
+ [ServerlessRepoReadWriteAccessPolicy](#serverlessrepo-read-write-access-policy)
+ [SESBulkTemplatedCrudPolicy](#ses-bulk-templated-crud-policy)
++ [SESBulkTemplatedCrudPolicy_v2](#ses-bulk-templated-crud-policy-v2)
+ [SESCrudPolicy](#ses-crud-policy)
+ [SESEmailTemplateCrudPolicy](#ses-email-template-crud-policy)
+ [SESSendBouncePolicy](#ses-send-bounce-policy)
@@ -1949,6 +1950,54 @@ Gives permission to send Amazon SES email, templated email, and templated bulk e
]
```
+## SESBulkTemplatedCrudPolicy_v2
+
+Gives permission to send Amazon SES email, templated email, and templated bulk emails and to verify identity\.
+
+```
+ "Statement": [
+ {
+ "Action": [
+ "ses:SendEmail",
+ "ses:SendRawEmail",
+ "ses:SendTemplatedEmail",
+ "ses:SendBulkTemplatedEmail"
+ ],
+ "Effect": "Allow",
+ "Resource": [
+ {
+ "Fn::Sub": [
+ "arn:${AWS::Partition}:ses:${AWS::Region}:${AWS::AccountId}:identity/${identityName}",
+ {
+ "identityName": {
+ "Ref": "IdentityName"
+ }
+ }
+ ]
+ },
+ {
+ "Fn::Sub": [
+ "arn:${AWS::Partition}:ses:${AWS::Region}:${AWS::AccountId}:template/${templateName}",
+ {
+ "templateName": {
+ "Ref": "TemplateName"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "Action": [
+ "ses:GetIdentityVerificationAttributes",
+ "ses:VerifyEmailIdentity"
+ ],
+ "Effect": "Allow",
+ "Resource": "*"
+ }
+ ]
+```
+
## SESCrudPolicy
Gives permission to send email and verify identity\.