Interface CfnConfigurationSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:41.366Z")
@Stability(Stable)
public interface CfnConfigurationSetProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnConfigurationSet
.
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.*; CfnConfigurationSetProps cfnConfigurationSetProps = CfnConfigurationSetProps.builder() .deliveryOptions(DeliveryOptionsProperty.builder() .sendingPoolName("sendingPoolName") .tlsPolicy("tlsPolicy") .build()) .name("name") .reputationOptions(ReputationOptionsProperty.builder() .reputationMetricsEnabled(false) .build()) .sendingOptions(SendingOptionsProperty.builder() .sendingEnabled(false) .build()) .suppressionOptions(SuppressionOptionsProperty.builder() .suppressedReasons(List.of("suppressedReasons")) .build()) .trackingOptions(TrackingOptionsProperty.builder() .customRedirectDomain("customRedirectDomain") .build()) .vdmOptions(VdmOptionsProperty.builder() .dashboardOptions(DashboardOptionsProperty.builder() .engagementMetrics("engagementMetrics") .build()) .guardianOptions(GuardianOptionsProperty.builder() .optimizedSharedDelivery("optimizedSharedDelivery") .build()) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConfigurationSetProps
static final class
An implementation forCfnConfigurationSetProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).default String
getName()
The name of the configuration set.default Object
An object that represents the reputation settings for the configuration set.default Object
An object that defines whether or not Amazon SES can send email that you send using the configuration set.default Object
An object that contains information about the suppression list preferences for your account.default Object
The name of the custom open and click tracking domain associated with the configuration set.default Object
The Virtual Deliverability Manager (VDM) options that apply to the configuration set.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeliveryOptions
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). -
getName
The name of the configuration set. The name must meet the following requirements:.- Contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
- Contain 64 characters or fewer.
-
getReputationOptions
An object that represents the reputation settings for the configuration set. -
getSendingOptions
An object that defines whether or not Amazon SES can send email that you send using the configuration set. -
getSuppressionOptions
An object that contains information about the suppression list preferences for your account. -
getTrackingOptions
The name of the custom open and click tracking domain associated with the configuration set. -
getVdmOptions
The Virtual Deliverability Manager (VDM) options that apply to the configuration set. -
builder
- Returns:
- a
CfnConfigurationSetProps.Builder
ofCfnConfigurationSetProps
-