interface CfnMailManagerRelayProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerRelayProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerRelayProps |
Java | software.amazon.awscdk.services.ses.CfnMailManagerRelayProps |
Python | aws_cdk.aws_ses.CfnMailManagerRelayProps |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerRelayProps |
Properties for defining a CfnMailManagerRelay.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
declare const noAuthentication: any;
const cfnMailManagerRelayProps: ses.CfnMailManagerRelayProps = {
authentication: {
noAuthentication: noAuthentication,
secretArn: 'secretArn',
},
serverName: 'serverName',
serverPort: 123,
// the properties below are optional
relayName: 'relayName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication | IResolvable | Relay | Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored. |
| server | string | The destination relay server address. |
| server | number | The destination relay server port. |
| relay | string | The unique relay name. |
| tags? | Cfn[] | The tags used to organize, track, or control access for the resource. |
authentication
Type:
IResolvable | Relay
Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored.
serverName
Type:
string
The destination relay server address.
serverPort
Type:
number
The destination relay server port.
relayName?
Type:
string
(optional)
The unique relay name.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for the resource.
For example, { "tags": {"key1":"value1", "key2":"value2"} }.

.NET
Go
Java
Python
TypeScript