@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.256Z") @Stability(value=Stable) public interface CfnConfigurationSetProps extends software.amazon.jsii.JsiiSerializable
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.pinpointemail.*;
CfnConfigurationSetProps cfnConfigurationSetProps = CfnConfigurationSetProps.builder()
.name("name")
// the properties below are optional
.deliveryOptions(DeliveryOptionsProperty.builder()
.sendingPoolName("sendingPoolName")
.build())
.reputationOptions(ReputationOptionsProperty.builder()
.reputationMetricsEnabled(false)
.build())
.sendingOptions(SendingOptionsProperty.builder()
.sendingEnabled(false)
.build())
.tags(List.of(TagsProperty.builder()
.key("key")
.value("value")
.build()))
.trackingOptions(TrackingOptionsProperty.builder()
.customRedirectDomain("customRedirectDomain")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnConfigurationSetProps.Builder
A builder for
CfnConfigurationSetProps |
static class |
CfnConfigurationSetProps.Jsii$Proxy
An implementation for
CfnConfigurationSetProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnConfigurationSetProps.Builder |
builder() |
default Object |
getDeliveryOptions()
An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
|
String |
getName()
The name of the configuration set.
|
default Object |
getReputationOptions()
An object that defines whether or not Amazon Pinpoint collects reputation metrics for the emails that you send that use the configuration set.
|
default Object |
getSendingOptions()
An object that defines whether or not Amazon Pinpoint can send email that you send using the configuration set.
|
default List<CfnConfigurationSet.TagsProperty> |
getTags()
An object that defines the tags (keys and values) that you want to associate with the configuration set.
|
default Object |
getTrackingOptions()
An object that defines the open and click tracking options for emails that you send using the configuration set.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default Object getDeliveryOptions()
@Stability(value=Stable) @Nullable default Object getReputationOptions()
@Stability(value=Stable) @Nullable default Object getSendingOptions()
@Stability(value=Stable) @Nullable default List<CfnConfigurationSet.TagsProperty> getTags()
@Stability(value=Stable) @Nullable default Object getTrackingOptions()
@Stability(value=Stable) static CfnConfigurationSetProps.Builder builder()
CfnConfigurationSetProps.Builder of CfnConfigurationSetPropsCopyright © 2022. All rights reserved.