interface RelayActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerRuleSet.RelayActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerRuleSet_RelayActionProperty |
Java | software.amazon.awscdk.services.ses.CfnMailManagerRuleSet.RelayActionProperty |
Python | aws_cdk.aws_ses.CfnMailManagerRuleSet.RelayActionProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerRuleSet » RelayActionProperty |
The action relays the email via SMTP to another specific SMTP server.
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 relayActionProperty: ses.CfnMailManagerRuleSet.RelayActionProperty = {
relay: 'relay',
// the properties below are optional
actionFailurePolicy: 'actionFailurePolicy',
mailFrom: 'mailFrom',
};
Properties
| Name | Type | Description |
|---|---|---|
| relay | string | The identifier of the relay resource to be used when relaying an email. |
| action | string | A policy that states what to do in the case of failure. |
| mail | string | This action specifies whether to preserve or replace original mail from address while relaying received emails to a destination server. |
relay
Type:
string
The identifier of the relay resource to be used when relaying an email.
actionFailurePolicy?
Type:
string
(optional)
A policy that states what to do in the case of failure.
The action will fail if there are configuration errors. For example, the specified relay has been deleted.
mailFrom?
Type:
string
(optional)
This action specifies whether to preserve or replace original mail from address while relaying received emails to a destination server.

.NET
Go
Java
Python
TypeScript