interface CfnTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnTemplateMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnTemplateMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnTemplateMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » CfnTemplateMixinProps |
Properties for CfnTemplatePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-template.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from '@aws-cdk/cfn-property-mixins';
const cfnTemplateMixinProps: ses.CfnTemplateMixinProps = {
tags: [{
key: 'key',
value: 'value',
}],
template: {
htmlPart: 'htmlPart',
subjectPart: 'subjectPart',
templateName: 'templateName',
textPart: 'textPart',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| tags? | Cfn[] | The tags (keys and values) associated with the email template. |
| template? | IResolvable | Template | The content of the email, composed of a subject line and either an HTML part or a text-only part. |
tags?
Type:
Cfn[]
(optional)
The tags (keys and values) associated with the email template.
template?
Type:
IResolvable | Template
(optional)
The content of the email, composed of a subject line and either an HTML part or a text-only part.

.NET
Go
Java
Python
TypeScript