interface ReceiptRuleAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.ReceiptRuleAttributes |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#ReceiptRuleAttributes |
Java | software.amazon.awscdk.services.ses.ReceiptRuleAttributes |
Python | aws_cdk.aws_ses.ReceiptRuleAttributes |
TypeScript (source) | aws-cdk-lib » aws_ses » ReceiptRuleAttributes |
Properties of a reference to an existing receipt rule.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
import { aws_ses as interfaces_ses } from 'aws-cdk-lib/interfaces';
declare const receiptRuleSetRef: interfaces_ses.IReceiptRuleSetRef;
const receiptRuleAttributes: ses.ReceiptRuleAttributes = {
receiptRuleName: 'receiptRuleName',
ruleSet: receiptRuleSetRef,
};
Properties
| Name | Type | Description |
|---|---|---|
| receipt | string | The name of the receipt rule. |
| rule | IReceipt | The rule set that the receipt rule belongs to. |
receiptRuleName
Type:
string
The name of the receipt rule.
ruleSet
Type:
IReceipt
The rule set that the receipt rule belongs to.

.NET
Go
Java
Python
TypeScript (