CfnTemplateMixinProps
- class aws_cdk.mixins_preview.aws_ses.mixins.CfnTemplateMixinProps(*, tags=None, template=None)
Bases:
objectProperties for CfnTemplatePropsMixin.
- Parameters:
tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags (keys and values) associated with the email template.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:
from aws_cdk import CfnTag # 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( tags=[CfnTag( key="key", value="value" )], template=ses_mixins.CfnTemplatePropsMixin.TemplateProperty( html_part="htmlPart", subject_part="subjectPart", template_name="templateName", text_part="textPart" ) )
Attributes
- tags
The tags (keys and values) associated with the email template.
- template
The content of the email, composed of a subject line and either an HTML part or a text-only part.