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

.NET
Go
Java
Python
TypeScript