@Stability(value=Stable)
public static interface CfnConfigurationSet.DeliveryOptionsProperty
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.*; DeliveryOptionsProperty deliveryOptionsProperty = DeliveryOptionsProperty.builder() .sendingPoolName("sendingPoolName") .tlsPolicy("tlsPolicy") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnConfigurationSet.DeliveryOptionsProperty.Builder
A builder for
CfnConfigurationSet.DeliveryOptionsProperty |
static class |
CfnConfigurationSet.DeliveryOptionsProperty.Jsii$Proxy
An implementation for
CfnConfigurationSet.DeliveryOptionsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnConfigurationSet.DeliveryOptionsProperty.Builder |
builder() |
default String |
getSendingPoolName()
The name of the dedicated IP pool to associate with the configuration set.
|
default String |
getTlsPolicy()
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).
|
@Stability(value=Stable) @Nullable default String getSendingPoolName()
@Stability(value=Stable) @Nullable default String getTlsPolicy()
If the value is REQUIRE
, messages are only delivered if a TLS connection can be established. If the value is OPTIONAL
, messages can be delivered in plain text if a TLS connection can't be established.
Valid Values: REQUIRE | OPTIONAL
@Stability(value=Stable) static CfnConfigurationSet.DeliveryOptionsProperty.Builder builder()
Copyright © 2023. All rights reserved.