interface CfnMailManagerRelayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerRelayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerRelayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerRelayMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerRelayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerRelayMixinProps |
Properties for CfnMailManagerRelayPropsMixin.
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 { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
declare const noAuthentication: any;
const cfnMailManagerRelayMixinProps: ses_mixins.CfnMailManagerRelayMixinProps = {
authentication: {
noAuthentication: noAuthentication,
secretArn: 'secretArn',
},
relayName: 'relayName',
serverName: 'serverName',
serverPort: 123,
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. |
| relay | string | The unique relay name. |
| server | string | The destination relay server address. |
| server | number | The destination relay server port. |
| tags? | Cfn[] | The tags used to organize, track, or control access for the resource. |
authentication?
Type:
IResolvable | Relay
(optional)
Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored.
relayName?
Type:
string
(optional)
The unique relay name.
serverName?
Type:
string
(optional)
The destination relay server address.
serverPort?
Type:
number
(optional)
The destination relay server port.
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