interface AppReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Pinpoint.AppReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspinpoint#AppReference |
Java | software.amazon.awscdk.services.pinpoint.AppReference |
Python | aws_cdk.aws_pinpoint.AppReference |
TypeScript | aws-cdk-lib » aws_pinpoint » AppReference |
A reference to a App 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 pinpoint } from 'aws-cdk-lib';
const appReference: pinpoint.AppReference = {
appArn: 'appArn',
appId: 'appId',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The ARN of the App resource. |
| app | string | The Id of the App resource. |
appArn
Type:
string
The ARN of the App resource.
appId
Type:
string
The Id of the App resource.

.NET
Go
Java
Python
TypeScript