Show / Hide Table of Contents

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 CfnMailManagerRuleSet.ISendActionProperty
Syntax (vb)
Public Interface CfnMailManagerRuleSet.ISendActionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-sendaction.html

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.

string? ActionFailurePolicy { get; }
Property Value

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-sendaction.html#cfn-ses-mailmanagerruleset-sendaction-actionfailurepolicy

RoleArn

The Amazon Resource Name (ARN) of the role to use for this action.

string RoleArn { get; }
Property Value

string

Remarks

This role must have access to the ses:SendRawEmail API.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-sendaction.html#cfn-ses-mailmanagerruleset-sendaction-rolearn

Back to top Generated by DocFX