class CfnConfigurationSetPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnConfigurationSetPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnConfigurationSetPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnConfigurationSetPropsMixin |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnConfigurationSetPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnConfigurationSetPropsMixin |
Implements
IMixin
Extends
Mixin
Configuration sets let you create groups of rules that you can apply to the emails you send using Amazon SES.
For more information about using configuration sets, see Using Amazon SES Configuration Sets in the Amazon SES Developer Guide .
Required permissions:
To apply any of the resource options, you will need to have the corresponding AWS Identity and Access Management (IAM) SES API v2 permissions:
ses:GetConfigurationSet(This permission is replacing the v1 ses:DescribeConfigurationSet permission which will not work with these v2 resource options.)
ses:PutConfigurationSetDeliveryOptions
ses:PutConfigurationSetReputationOptions
ses:PutConfigurationSetSendingOptions
ses:PutConfigurationSetSuppressionOptions
ses:PutConfigurationSetTrackingOptions
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const cfnConfigurationSetPropsMixin = new ses_mixins.CfnConfigurationSetPropsMixin({
deliveryOptions: {
maxDeliverySeconds: 123,
sendingPoolName: 'sendingPoolName',
tlsPolicy: 'tlsPolicy',
},
name: 'name',
reputationOptions: {
reputationMetricsEnabled: false,
},
sendingOptions: {
sendingEnabled: false,
},
suppressionOptions: {
suppressedReasons: ['suppressedReasons'],
},
tags: [{
key: 'key',
value: 'value',
}],
trackingOptions: {
customRedirectDomain: 'customRedirectDomain',
httpsPolicy: 'httpsPolicy',
},
vdmOptions: {
dashboardOptions: {
engagementMetrics: 'engagementMetrics',
},
guardianOptions: {
optimizedSharedDelivery: 'optimizedSharedDelivery',
},
},
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnConfigurationSetPropsMixin(props: CfnConfigurationSetMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Configuration Set Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::SES::ConfigurationSet.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript