interface CfnTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnTemplateMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnTemplateMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnTemplateMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » 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 { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const cfnTemplateMixinProps: ses_mixins.CfnTemplateMixinProps = {
template: {
htmlPart: 'htmlPart',
subjectPart: 'subjectPart',
templateName: 'templateName',
textPart: 'textPart',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| template? | IResolvable | Template | The content of the email, composed of a subject line and either an HTML part or a text-only part. |
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