Interface CfnMailManagerRuleSet.ISendActionProperty
Sends the email to the internet using the ses:SendRawEmail API.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISendActionProperty
Syntax (vb)
Public Interface ISendActionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES;
var sendActionProperty = new SendActionProperty {
RoleArn = "roleArn",
// the properties below are optional
ActionFailurePolicy = "actionFailurePolicy"
};
Synopsis
Properties
ActionFailurePolicy | A policy that states what to do in the case of failure. |
RoleArn | The Amazon Resource Name (ARN) of the role to use for this action. |
Properties
ActionFailurePolicy
A policy that states what to do in the case of failure.
virtual string ActionFailurePolicy { get; }
Property Value
System.String
Remarks
The action will fail if there are configuration errors. For example, the caller does not have the permissions to call the sendRawEmail API.
RoleArn
The Amazon Resource Name (ARN) of the role to use for this action.
string RoleArn { get; }
Property Value
System.String
Remarks
This role must have access to the ses:SendRawEmail API.