Interface CfnConfigurationSetPropsMixin.DeliveryOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationSetPropsMixin.DeliveryOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnConfigurationSetPropsMixin
@Stability(Stable)
public static interface CfnConfigurationSetPropsMixin.DeliveryOptionsProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the name of the dedicated IP pool to associate with the configuration set and whether messages that use the configuration set are required to use Transport Layer Security (TLS).
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ses.*;
DeliveryOptionsProperty deliveryOptionsProperty = DeliveryOptionsProperty.builder()
.maxDeliverySeconds(123)
.sendingPoolName("sendingPoolName")
.tlsPolicy("tlsPolicy")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationSetPropsMixin.DeliveryOptionsPropertystatic final classAn implementation forCfnConfigurationSetPropsMixin.DeliveryOptionsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe name of the configuration set used when sent through a configuration set with archiving enabled.default ObjectThe name of the dedicated IP pool to associate with the configuration set.default StringSpecifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxDeliverySeconds
The name of the configuration set used when sent through a configuration set with archiving enabled.- See Also:
-
getSendingPoolName
The name of the dedicated IP pool to associate with the configuration set.Returns union: either
StringorIDedicatedIpPoolRef- See Also:
-
getTlsPolicy
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).If the value is
REQUIRE, messages are only delivered if a TLS connection can be established. If the value isOPTIONAL, messages can be delivered in plain text if a TLS connection can't be established.Valid Values:
REQUIRE | OPTIONAL- See Also:
-
builder
-