create_receipt_rule_set
(**kwargs)¶Creates an empty receipt rule set.
For information about setting up receipt rule sets, see the Amazon SES Developer Guide.
You can execute this operation no more than once per second.
See also: AWS API Documentation
Request Syntax
response = client.create_receipt_rule_set(
RuleSetName='string'
)
[REQUIRED]
The name of the rule set to create. The name must:
{}
Response Structure
An empty element returned on a successful request.
Exceptions
SES.Client.exceptions.AlreadyExistsException
SES.Client.exceptions.LimitExceededException
Examples
The following example creates an empty receipt rule set:
response = client.create_receipt_rule_set(
RuleSetName='MyRuleSet',
)
print(response)
Expected Output:
{
'ResponseMetadata': {
'...': '...',
},
}