Interface CfnMailManagerRelayProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMailManagerRelayProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-10-31T19:13:05.949Z") @Stability(Stable) public interface CfnMailManagerRelayProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnMailManagerRelay.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ses.*;
 Object noAuthentication;
 CfnMailManagerRelayProps cfnMailManagerRelayProps = CfnMailManagerRelayProps.builder()
         .authentication(RelayAuthenticationProperty.builder()
                 .noAuthentication(noAuthentication)
                 .secretArn("secretArn")
                 .build())
         .serverName("serverName")
         .serverPort(123)
         // the properties below are optional
         .relayName("relayName")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: