CfnMailManagerRelayMixinProps
- class aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerRelayMixinProps(*, authentication=None, relay_name=None, server_name=None, server_port=None, tags=None)
Bases:
objectProperties for CfnMailManagerRelayPropsMixin.
- Parameters:
authentication (
Union[IResolvable,RelayAuthenticationProperty,Dict[str,Any],None]) – Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored.relay_name (
Optional[str]) – The unique relay name.server_name (
Optional[str]) – The destination relay server address.server_port (
Union[int,float,None]) – The destination relay server port.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags used to organize, track, or control access for the resource. For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerrelay.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_ses import mixins as ses_mixins # no_authentication: Any cfn_mail_manager_relay_mixin_props = ses_mixins.CfnMailManagerRelayMixinProps( authentication=ses_mixins.CfnMailManagerRelayPropsMixin.RelayAuthenticationProperty( no_authentication=no_authentication, secret_arn="secretArn" ), relay_name="relayName", server_name="serverName", server_port=123, tags=[CfnTag( key="key", value="value" )] )
Attributes
- authentication
Authentication for the relay destination server—specify the secretARN where the SMTP credentials are stored.
- relay_name
The unique relay name.
- server_name
The destination relay server address.
- server_port
The destination relay server port.
- tags
The tags used to organize, track, or control access for the resource.
For example, { “tags”: {“key1”:”value1”, “key2”:”value2”} }.