CfnEmailChannelProps
- class aws_cdk.aws_pinpoint.CfnEmailChannelProps(*, application_id, from_address, identity, configuration_set=None, enabled=None, orchestration_sending_role_arn=None, role_arn=None)
Bases:
object
Properties for defining a
CfnEmailChannel
.- Parameters:
application_id (
str
) – The unique identifier for the Amazon Pinpoint application that you’re specifying the email channel for.from_address (
str
) – The verified email address that you want to send email from when you send email through the channel.identity (
str
) – 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.configuration_set (
Optional
[str
]) – The Amazon SES configuration set that you want to apply to messages that you send through the channel.enabled (
Union
[bool
,IResolvable
,None
]) – Specifies whether to enable the email channel for the application.orchestration_sending_role_arn (
Optional
[str
]) – The ARN of an IAM role for Amazon Pinpoint to use to send email from your campaigns or journeys through Amazon SES .role_arn (
Optional
[str
]) – 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.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_pinpoint as pinpoint cfn_email_channel_props = pinpoint.CfnEmailChannelProps( application_id="applicationId", from_address="fromAddress", identity="identity", # the properties below are optional configuration_set="configurationSet", enabled=False, orchestration_sending_role_arn="orchestrationSendingRoleArn", role_arn="roleArn" )
Attributes
- application_id
The unique identifier for the Amazon Pinpoint application that you’re specifying the email channel for.
- configuration_set
//docs.aws.amazon.com/ses/latest/APIReference/API_ConfigurationSet.html>`_ that you want to apply to messages that you send through the channel.
- See:
- Type:
The `Amazon SES configuration set <https
- enabled
Specifies whether to enable the email channel for the application.
- from_address
The verified email address that you want to send email from when you send email through the channel.
- identity
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_sending_role_arn
The ARN of an IAM role for Amazon Pinpoint to use to send email from your campaigns or journeys through Amazon SES .
- role_arn
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.