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.
Inherited Members
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.
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.
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
Remarks
SecretArn
The ARN of the secret created in secrets manager where the relay server's SMTP credentials are stored.
public string? SecretArn { get; set; }