Interface CfnConfigurationSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-14T22:22:01.930Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConfigurationSetPropsstatic final classAn implementation forCfnConfigurationSetProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSpecifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).default StringgetName()The name of the configuration set.default ObjectAn object that represents the reputation settings for the configuration set.default ObjectAn object that defines whether or not Amazon SES can send email that you send using the configuration set.default ObjectAn object that contains information about the suppression list preferences for your account.default ObjectThe name of the custom open and click tracking domain associated with the configuration set.default ObjectThe 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).- 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 represents the reputation settings for 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
The name of the custom open and click tracking domain associated with the configuration set.- See Also:
-
getVdmOptions
The Virtual Deliverability Manager (VDM) options that apply to the configuration set.- See Also:
-
builder
- Returns:
- a
CfnConfigurationSetProps.BuilderofCfnConfigurationSetProps
-