CfnReceiptRuleSetProps
- class aws_cdk.aws_ses.CfnReceiptRuleSetProps(*, rule_set_name=None)
Bases:
object
Properties for defining a
CfnReceiptRuleSet
.- Parameters:
rule_set_name (
Optional
[str
]) – The name of the receipt rule set to make active. Setting this value to null disables all email receiving.- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptruleset.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_ses as ses cfn_receipt_rule_set_props = ses.CfnReceiptRuleSetProps( rule_set_name="ruleSetName" )
Attributes
- rule_set_name
The name of the receipt rule set to make active.
Setting this value to null disables all email receiving.