Show / Hide Table of Contents

Class CfnMailManagerRelayPropsMixin.RelayAuthenticationProperty

Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored, or specify an empty NoAuthentication structure if the relay destination server does not require SMTP credential authentication.

Inheritance
object
CfnMailManagerRelayPropsMixin.RelayAuthenticationProperty
Implements
CfnMailManagerRelayPropsMixin.IRelayAuthenticationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SES
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnMailManagerRelayPropsMixin.RelayAuthenticationProperty : CfnMailManagerRelayPropsMixin.IRelayAuthenticationProperty
Syntax (vb)
Public Class CfnMailManagerRelayPropsMixin.RelayAuthenticationProperty Implements CfnMailManagerRelayPropsMixin.IRelayAuthenticationProperty
Remarks
This data type is a UNION, so only one of the following members can be specified when used or returned.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerrelay-relayauthentication.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.CfnPropertyMixins.AWS.SES;

             var noAuthentication;

             var relayAuthenticationProperty = new RelayAuthenticationProperty {
                 NoAuthentication = noAuthentication,
                 SecretArn = "secretArn"
             };

Synopsis

Constructors

RelayAuthenticationProperty()

Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored, or specify an empty NoAuthentication structure if the relay destination server does not require SMTP credential authentication.

Properties

NoAuthentication

Keep an empty structure if the relay destination server does not require SMTP credential authentication.

SecretArn

The ARN of the secret created in secrets manager where the relay server's SMTP credentials are stored.

Constructors

RelayAuthenticationProperty()

Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored, or specify an empty NoAuthentication structure if the relay destination server does not require SMTP credential authentication.

public RelayAuthenticationProperty()
Remarks
This data type is a UNION, so only one of the following members can be specified when used or returned.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerrelay-relayauthentication.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.CfnPropertyMixins.AWS.SES;

             var noAuthentication;

             var relayAuthenticationProperty = new RelayAuthenticationProperty {
                 NoAuthentication = noAuthentication,
                 SecretArn = "secretArn"
             };

Properties

NoAuthentication

Keep an empty structure if the relay destination server does not require SMTP credential authentication.

public object? NoAuthentication { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerrelay-relayauthentication.html#cfn-ses-mailmanagerrelay-relayauthentication-noauthentication

SecretArn

The ARN of the secret created in secrets manager where the relay server's SMTP credentials are stored.

public string? SecretArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerrelay-relayauthentication.html#cfn-ses-mailmanagerrelay-relayauthentication-secretarn

Implements

CfnMailManagerRelayPropsMixin.IRelayAuthenticationProperty
Back to top Generated by DocFX