Show / Hide Table of Contents

Interface ICfnMailManagerRelayProps

Properties for defining a CfnMailManagerRelay.

Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnMailManagerRelayProps
Syntax (vb)
Public Interface ICfnMailManagerRelayProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.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 noAuthentication;

             var cfnMailManagerRelayProps = new CfnMailManagerRelayProps {
                 Authentication = new RelayAuthenticationProperty {
                     NoAuthentication = noAuthentication,
                     SecretArn = "secretArn"
                 },
                 ServerName = "serverName",
                 ServerPort = 123,

                 // the properties below are optional
                 RelayName = "relayName",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Authentication

Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored.

RelayName

The unique relay name.

ServerName

The destination relay server address.

ServerPort

The destination relay server port.

Tags

The tags used to organize, track, or control access for the resource.

Properties

Authentication

Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored.

object Authentication { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.html#cfn-ses-mailmanagerrelay-authentication

RelayName

The unique relay name.

string? RelayName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.html#cfn-ses-mailmanagerrelay-relayname

ServerName

The destination relay server address.

string ServerName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.html#cfn-ses-mailmanagerrelay-servername

ServerPort

The destination relay server port.

double ServerPort { get; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.html#cfn-ses-mailmanagerrelay-serverport

Tags

The tags used to organize, track, or control access for the resource.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

For example, { "tags": {"key1":"value1", "key2":"value2"} }.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.html#cfn-ses-mailmanagerrelay-tags

Back to top Generated by DocFX