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

.NET
Go
Java
Python
TypeScript