interface CfnConfigurationSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PinpointEmail.Mixins.CfnConfigurationSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpointemail/mixins#CfnConfigurationSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pinpointemail.mixins.CfnConfigurationSetMixinProps |
Python | aws_cdk.mixins_preview.aws_pinpointemail.mixins.CfnConfigurationSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pinpointemail » mixins » CfnConfigurationSetMixinProps |
Properties for CfnConfigurationSetPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pinpointemail_mixins } from '@aws-cdk/mixins-preview/aws-pinpointemail';
const cfnConfigurationSetMixinProps: pinpointemail_mixins.CfnConfigurationSetMixinProps = {
deliveryOptions: {
sendingPoolName: 'sendingPoolName',
},
name: 'name',
reputationOptions: {
reputationMetricsEnabled: false,
},
sendingOptions: {
sendingEnabled: false,
},
tags: [{
key: 'key',
value: 'value',
}],
trackingOptions: {
customRedirectDomain: 'customRedirectDomain',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| delivery | IResolvable | Delivery | An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set. |
| name? | string | The name of the configuration set. |
| reputation | IResolvable | Reputation | An object that defines whether or not Amazon Pinpoint collects reputation metrics for the emails that you send that use the configuration set. |
| sending | IResolvable | Sending | An object that defines whether or not Amazon Pinpoint can send email that you send using the configuration set. |
| tags? | Cfn[] | An object that defines the tags (keys and values) that you want to associate with the configuration set. |
| tracking | IResolvable | Tracking | An object that defines the open and click tracking options for emails that you send using the configuration set. |
deliveryOptions?
Type:
IResolvable | Delivery
(optional)
An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
name?
Type:
string
(optional)
The name of the configuration set.
reputationOptions?
Type:
IResolvable | Reputation
(optional)
An object that defines whether or not Amazon Pinpoint collects reputation metrics for the emails that you send that use the configuration set.
sendingOptions?
Type:
IResolvable | Sending
(optional)
An object that defines whether or not Amazon Pinpoint can send email that you send using the configuration set.
tags?
Type:
Cfn[]
(optional)
An object that defines the tags (keys and values) that you want to associate with the configuration set.
trackingOptions?
Type:
IResolvable | Tracking
(optional)
An object that defines the open and click tracking options for emails that you send using the configuration set.

.NET
Go
Java
Python
TypeScript