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

CreateApplicationRequest

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

Specifies the display name of an application and the tags to associate with the application.

interface CreateApplicationRequest {
Name: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
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 defines the tags to associate with the application. Each tag consists of a required tag key and an associated tag value.