interface CfnMailManagerRuleSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerRuleSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerRuleSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerRuleSetMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerRuleSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerRuleSetMixinProps |
Properties for CfnMailManagerRuleSetPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
declare const drop: any;
const cfnMailManagerRuleSetMixinProps: ses_mixins.CfnMailManagerRuleSetMixinProps = {
rules: [{
actions: [{
addHeader: {
headerName: 'headerName',
headerValue: 'headerValue',
},
archive: {
actionFailurePolicy: 'actionFailurePolicy',
targetArchive: 'targetArchive',
},
deliverToMailbox: {
actionFailurePolicy: 'actionFailurePolicy',
mailboxArn: 'mailboxArn',
roleArn: 'roleArn',
},
deliverToQBusiness: {
actionFailurePolicy: 'actionFailurePolicy',
applicationId: 'applicationId',
indexId: 'indexId',
roleArn: 'roleArn',
},
drop: drop,
publishToSns: {
actionFailurePolicy: 'actionFailurePolicy',
encoding: 'encoding',
payloadType: 'payloadType',
roleArn: 'roleArn',
topicArn: 'topicArn',
},
relay: {
actionFailurePolicy: 'actionFailurePolicy',
mailFrom: 'mailFrom',
relay: 'relay',
},
replaceRecipient: {
replaceWith: ['replaceWith'],
},
send: {
actionFailurePolicy: 'actionFailurePolicy',
roleArn: 'roleArn',
},
writeToS3: {
actionFailurePolicy: 'actionFailurePolicy',
roleArn: 'roleArn',
s3Bucket: 's3Bucket',
s3Prefix: 's3Prefix',
s3SseKmsKeyId: 's3SseKmsKeyId',
},
}],
conditions: [{
booleanExpression: {
evaluate: {
analysis: {
analyzer: 'analyzer',
resultField: 'resultField',
},
attribute: 'attribute',
isInAddressList: {
addressLists: ['addressLists'],
attribute: 'attribute',
},
},
operator: 'operator',
},
dmarcExpression: {
operator: 'operator',
values: ['values'],
},
ipExpression: {
evaluate: {
attribute: 'attribute',
},
operator: 'operator',
values: ['values'],
},
numberExpression: {
evaluate: {
attribute: 'attribute',
},
operator: 'operator',
value: 123,
},
stringExpression: {
evaluate: {
analysis: {
analyzer: 'analyzer',
resultField: 'resultField',
},
attribute: 'attribute',
mimeHeaderAttribute: 'mimeHeaderAttribute',
},
operator: 'operator',
values: ['values'],
},
verdictExpression: {
evaluate: {
analysis: {
analyzer: 'analyzer',
resultField: 'resultField',
},
attribute: 'attribute',
},
operator: 'operator',
values: ['values'],
},
}],
name: 'name',
unless: [{
booleanExpression: {
evaluate: {
analysis: {
analyzer: 'analyzer',
resultField: 'resultField',
},
attribute: 'attribute',
isInAddressList: {
addressLists: ['addressLists'],
attribute: 'attribute',
},
},
operator: 'operator',
},
dmarcExpression: {
operator: 'operator',
values: ['values'],
},
ipExpression: {
evaluate: {
attribute: 'attribute',
},
operator: 'operator',
values: ['values'],
},
numberExpression: {
evaluate: {
attribute: 'attribute',
},
operator: 'operator',
value: 123,
},
stringExpression: {
evaluate: {
analysis: {
analyzer: 'analyzer',
resultField: 'resultField',
},
attribute: 'attribute',
mimeHeaderAttribute: 'mimeHeaderAttribute',
},
operator: 'operator',
values: ['values'],
},
verdictExpression: {
evaluate: {
analysis: {
analyzer: 'analyzer',
resultField: 'resultField',
},
attribute: 'attribute',
},
operator: 'operator',
values: ['values'],
},
}],
}],
ruleSetName: 'ruleSetName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| rule | string | A user-friendly name for the rule set. |
| rules? | IResolvable | (IResolvable | Rule)[] | Conditional rules that are evaluated for determining actions on email. |
| tags? | Cfn[] | The tags used to organize, track, or control access for the resource. |
ruleSetName?
Type:
string
(optional)
A user-friendly name for the rule set.
rules?
Type:
IResolvable | (IResolvable | Rule)[]
(optional)
Conditional rules that are evaluated for determining actions on email.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for the resource.
For example, { "tags": {"key1":"value1", "key2":"value2"} }.

.NET
Go
Java
Python
TypeScript