AWS::SES::ConfigurationSet
The AWS::SES::ConfigurationSet resource lets you create groups of rules
that you can apply to the emails you send using Amazon SES. For more information about
using
configuration sets, see Using Amazon SES
Configuration Sets in the Amazon Simple Email Service Developer Guide.
Configuration sets
Syntax
To declare this entity in your AWS CloudFormation template, use the following syntax:
JSON
{ "Type" : "AWS::SES::ConfigurationSet", "Properties" : { "Name" :String} }
YAML
Type: "AWS::SES::ConfigurationSet" Properties: Name:String
Properties
Name-
The name of the configuration set. The name must meet the following requirements:
-
Contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
-
Contain 64 characters or fewer.
Required: No
Type: String
Update requires: Replacement
-
Return Values
Ref
When the logical ID of this resource is provided to the Ref intrinsic
function, Ref returns the resource name.
For more information about using the Ref function, see Ref.
Example
JSON
{ "AWSTemplateFormatVersion": "2010-09-09", "Description": "AWS SES ConfigurationSet Sample Template", "Parameters": { "ConfigSetName": { "Type": "String" } }, "Resources": { "ConfigSet": { "Type": "AWS::SES::ConfigurationSet", "Properties": { "Name": { "Ref": "ConfigSetName" } } } } }
YAML
AWSTemplateFormatVersion: 2010-09-09 Description: "AWS SES ConfigurationSet Sample Template" Parameters: ConfigSetName: Type: String Resources: ConfigSet: Type: AWS::SES::ConfigurationSet Properties: Name: !Ref ConfigSetName
See Also
-
Using Amazon SES Configuration Sets in the Amazon Simple Email Service Developer Guide
-
ConfigurationSet in the Amazon Simple Email Service API Reference
