Interface CfnConfigurationSetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfigurationSetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:48.841Z")
@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())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.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 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.getTags()An array of objects that define the tags (keys and values) that are associated with the configuration set.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).Returns union: either
IResolvableorCfnConfigurationSet.DeliveryOptionsProperty- 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.Returns union: either
IResolvableorCfnConfigurationSet.ReputationOptionsProperty- See Also:
-
getSendingOptions
An object that defines whether or not Amazon SES can send email that you send using the configuration set.Returns union: either
IResolvableorCfnConfigurationSet.SendingOptionsProperty- See Also:
-
getSuppressionOptions
An object that contains information about the suppression list preferences for your account.Returns union: either
IResolvableorCfnConfigurationSet.SuppressionOptionsProperty- See Also:
-
getTags
An array of objects that define the tags (keys and values) that are associated with the configuration set.- See Also:
-
getTrackingOptions
An object that defines the open and click tracking options for emails that you send using the configuration set.Returns union: either
IResolvableorCfnConfigurationSet.TrackingOptionsProperty- See Also:
-
getVdmOptions
The Virtual Deliverability Manager (VDM) options that apply to the configuration set.Returns union: either
IResolvableorCfnConfigurationSet.VdmOptionsProperty- See Also:
-
builder
- Returns:
- a
CfnConfigurationSetProps.BuilderofCfnConfigurationSetProps
-