interface BounceActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerRuleSet.BounceActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerRuleSet_BounceActionProperty |
Java | software.amazon.awscdk.services.ses.CfnMailManagerRuleSet.BounceActionProperty |
Python | aws_cdk.aws_ses.CfnMailManagerRuleSet.BounceActionProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerRuleSet » BounceActionProperty |
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';
const bounceActionProperty: ses.CfnMailManagerRuleSet.BounceActionProperty = {
diagnosticMessage: 'diagnosticMessage',
roleArn: 'roleArn',
sender: 'sender',
smtpReplyCode: 'smtpReplyCode',
statusCode: 'statusCode',
// the properties below are optional
actionFailurePolicy: 'actionFailurePolicy',
message: 'message',
};
Properties
| Name | Type | Description |
|---|---|---|
| diagnostic | string | |
| role | string | |
| sender | string | |
| smtp | string | |
| status | string | |
| action | string | |
| message? | string |
diagnosticMessage
Type:
string
roleArn
Type:
string
sender
Type:
string
smtpReplyCode
Type:
string
statusCode
Type:
string
actionFailurePolicy?
Type:
string
(optional)
message?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript