CfnEmailChannelMixinProps
- class aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnEmailChannelMixinProps(*, application_id=None, configuration_set=None, enabled=None, from_address=None, identity=None, orchestration_sending_role_arn=None, role_arn=None)
Bases:
objectProperties for CfnEmailChannelPropsMixin.
- Parameters:
application_id (
Optional[str]) – The unique identifier for the Amazon Pinpoint application that you’re specifying the email channel for.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.from_address (
Optional[str]) – The verified email address that you want to send email from when you send email through the channel.identity (
Optional[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.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.mixins_preview.aws_pinpoint import mixins as pinpoint_mixins cfn_email_channel_mixin_props = pinpoint_mixins.CfnEmailChannelMixinProps( application_id="applicationId", configuration_set="configurationSet", enabled=False, from_address="fromAddress", identity="identity", 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
The Amazon SES configuration set that you want to apply to messages that you send through the channel.
- 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.