Interface CfnMailManagerIngressPoint.TlsAuthConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMailManagerIngressPoint.TlsAuthConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnMailManagerIngressPoint

@Stability(Stable) public static interface CfnMailManagerIngressPoint.TlsAuthConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 TlsAuthConfigurationProperty tlsAuthConfigurationProperty = TlsAuthConfigurationProperty.builder()
         .trustStore(TrustStoreProperty.builder()
                 .caContent("caContent")
                 // the properties below are optional
                 .crlContent("crlContent")
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .build();
 

See Also: