Interface CfnConfigurationSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-06T22:16:02.955Z")
@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() .maxDeliverySeconds(123) .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") .httpsPolicy("httpsPolicy") .build()) .vdmOptions(VdmOptionsProperty.builder() .dashboardOptions(DashboardOptionsProperty.builder() .engagementMetrics("engagementMetrics") .build()) .guardianOptions(GuardianOptionsProperty.builder() .optimizedSharedDelivery("optimizedSharedDelivery") .build()) .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConfigurationSetProps
static final class
An implementation forCfnConfigurationSetProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
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).default String
getName()
The name of the configuration set.default Object
An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use 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
An object that defines the open and click tracking options for emails that you send using 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 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).- See Also:
-
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.
- See Also:
-
getReputationOptions
An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.- See Also:
-
getSendingOptions
An object that defines whether or not Amazon SES can send email that you send using the configuration set.- See Also:
-
getSuppressionOptions
An object that contains information about the suppression list preferences for your account.- See Also:
-
getTrackingOptions
An object that defines the open and click tracking options for emails that you send using the configuration set.- See Also:
-
getVdmOptions
The Virtual Deliverability Manager (VDM) options that apply to the configuration set.- See Also:
-
builder
- Returns:
- a
CfnConfigurationSetProps.Builder
ofCfnConfigurationSetProps
-