interface CfnEmailChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnEmailChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnEmailChannelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnEmailChannelMixinProps |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnEmailChannelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnEmailChannelMixinProps |
Properties for CfnEmailChannelPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pinpoint_mixins } from '@aws-cdk/mixins-preview/aws-pinpoint';
const cfnEmailChannelMixinProps: pinpoint_mixins.CfnEmailChannelMixinProps = {
applicationId: 'applicationId',
configurationSet: 'configurationSet',
enabled: false,
fromAddress: 'fromAddress',
identity: 'identity',
orchestrationSendingRoleArn: 'orchestrationSendingRoleArn',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The unique identifier for the Amazon Pinpoint application that you're specifying the email channel for. |
| configuration | string | The Amazon SES configuration set that you want to apply to messages that you send through the channel. |
| enabled? | boolean | IResolvable | Specifies whether to enable the email channel for the application. |
| from | string | The verified email address that you want to send email from when you send email through the channel. |
| identity? | string | The Amazon Resource Name (ARN) of the identity, verified with Amazon Simple Email Service (Amazon SES), that you want to use when you send email through the channel. |
| orchestration | string | The ARN of an IAM role for Amazon Pinpoint to use to send email from your campaigns or journeys through Amazon SES . |
| role | string | The ARN of the AWS Identity and Access Management (IAM) role that you want Amazon Pinpoint to use when it submits email-related event data for the channel. |
applicationId?
Type:
string
(optional)
The unique identifier for the Amazon Pinpoint application that you're specifying the email channel for.
configurationSet?
Type:
string
(optional)
The Amazon SES configuration set that you want to apply to messages that you send through the channel.
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether to enable the email channel for the application.
fromAddress?
Type:
string
(optional)
The verified email address that you want to send email from when you send email through the channel.
identity?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the identity, verified with Amazon Simple Email Service (Amazon SES), that you want to use when you send email through the channel.
orchestrationSendingRoleArn?
Type:
string
(optional)
The ARN of an IAM role for Amazon Pinpoint to use to send email from your campaigns or journeys through Amazon SES .
roleArn?
Type:
string
(optional)
The ARN of the AWS Identity and Access Management (IAM) role that you want Amazon Pinpoint to use when it submits email-related event data for the channel.

.NET
Go
Java
Python
TypeScript