Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ApplicationResponse

import type { ApplicationResponse } from "https://aws-api.deno.dev/v0.4/services/pinpoint.ts?docs=full";

Provides information about an application.

interface ApplicationResponse {
Arn: string;
CreationDate?: string | null;
Id: string;
Name: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
Arn: string
[src]

The Amazon Resource Name (ARN) of the application.

§
CreationDate?: string | null
[src]

The date and time when the Application was created.

§
Id: string
[src]

The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.

§
Name: string
[src]

The display name of the application. This name is displayed as the Project name on the Amazon Pinpoint console.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A string-to-string map of key-value pairs that identifies the tags that are associated with the application. Each tag consists of a required tag key and an associated tag value.