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

ApplicationInfo

import type { ApplicationInfo } from "https://aws-api.deno.dev/v0.3/services/codedeploy.ts?docs=full";

Information about an application.

interface ApplicationInfo {
applicationId?: string | null;
applicationName?: string | null;
computePlatform?: ComputePlatform | null;
createTime?: Date | number | null;
gitHubAccountName?: string | null;
linkedToGitHub?: boolean | null;
}

§Properties

§
applicationId?: string | null
[src]

The application ID.

§
applicationName?: string | null
[src]

The application name.

§
computePlatform?: ComputePlatform | null
[src]

The destination platform type for deployment of the application (Lambda or Server).

§
createTime?: Date | number | null
[src]

The time at which the application was created.

§
gitHubAccountName?: string | null
[src]

The name for a connection to a GitHub account.

§
linkedToGitHub?: boolean | null
[src]

True if the user has authenticated with GitHub for the specified application. Otherwise, false.