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
Remarks
RelayName
The unique relay name.
string? RelayName { get; }
Property Value
Remarks
ServerName
The destination relay server address.
string ServerName { get; }
Property Value
Remarks
ServerPort
The destination relay server port.
double ServerPort { get; }
Property Value
Remarks
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"} }.