interface EmailTemplateReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Pinpoint.EmailTemplateReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspinpoint#EmailTemplateReference |
Java | software.amazon.awscdk.interfaces.pinpoint.EmailTemplateReference |
Python | aws_cdk.interfaces.aws_pinpoint.EmailTemplateReference |
TypeScript | aws-cdk-lib » interfaces » aws_pinpoint » EmailTemplateReference |
A reference to a EmailTemplate resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pinpoint as interfaces_aws_pinpoint } from 'aws-cdk-lib/interfaces';
const emailTemplateReference: interfaces_aws_pinpoint.EmailTemplateReference = {
emailTemplateArn: 'emailTemplateArn',
emailTemplateId: 'emailTemplateId',
};
Properties
| Name | Type | Description |
|---|---|---|
| email | string | The ARN of the EmailTemplate resource. |
| email | string | The Id of the EmailTemplate resource. |
emailTemplateArn
Type:
string
The ARN of the EmailTemplate resource.
emailTemplateId
Type:
string
The Id of the EmailTemplate resource.

.NET
Go
Java
Python
TypeScript