CfnTemplateMixinProps

class aws_cdk.mixins_preview.aws_ses.mixins.CfnTemplateMixinProps(*, template=None)

Bases: object

Properties for CfnTemplatePropsMixin.

Parameters:

template (Union[IResolvable, TemplateProperty, Dict[str, Any], None]) – The content of the email, composed of a subject line and either an HTML part or a text-only part.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html

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_ses import mixins as ses_mixins

cfn_template_mixin_props = ses_mixins.CfnTemplateMixinProps(
    template=ses_mixins.CfnTemplatePropsMixin.TemplateProperty(
        html_part="htmlPart",
        subject_part="subjectPart",
        template_name="templateName",
        text_part="textPart"
    )
)

Attributes

template

The content of the email, composed of a subject line and either an HTML part or a text-only part.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html#cfn-ses-template-template