Interface CfnConfigurationSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:17.134Z")
@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")
.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 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 StringgetName()The name of the configuration set.default ObjectAn object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use 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 ObjectAn object that defines the open and click tracking options for emails that you send using 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 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.BuilderofCfnConfigurationSetProps
-