interface SmsTemplateReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Pinpoint.SmsTemplateReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspinpoint#SmsTemplateReference |
Java | software.amazon.awscdk.interfaces.pinpoint.SmsTemplateReference |
Python | aws_cdk.interfaces.aws_pinpoint.SmsTemplateReference |
TypeScript | aws-cdk-lib » interfaces » aws_pinpoint » SmsTemplateReference |
A reference to a SmsTemplate 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_pinpoint } from 'aws-cdk-lib/interfaces';
const smsTemplateReference: interfaces_pinpoint.SmsTemplateReference = {
smsTemplateArn: 'smsTemplateArn',
smsTemplateId: 'smsTemplateId',
};
Properties
| Name | Type | Description |
|---|---|---|
| sms | string | The ARN of the SmsTemplate resource. |
| sms | string | The Id of the SmsTemplate resource. |
smsTemplateArn
Type:
string
The ARN of the SmsTemplate resource.
smsTemplateId
Type:
string
The Id of the SmsTemplate resource.

.NET
Go
Java
Python
TypeScript