Interface CfnMailManagerRelayPropsMixin.IRelayAuthenticationProperty
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.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SES
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnMailManagerRelayPropsMixin.IRelayAuthenticationProperty
Syntax (vb)
Public Interface CfnMailManagerRelayPropsMixin.IRelayAuthenticationProperty
Remarks
This data type is a UNION, so only one of the following members can be specified when used or returned.
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
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. |
Properties
NoAuthentication
Keep an empty structure if the relay destination server does not require SMTP credential authentication.
object? NoAuthentication { get; }
Property Value
Remarks
SecretArn
The ARN of the secret created in secrets manager where the relay server's SMTP credentials are stored.
string? SecretArn { get; }