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

DescribeApplicationResponse

import type { DescribeApplicationResponse } from "https://aws-api.deno.dev/v0.3/services/iotfleethub.ts?docs=full";
interface DescribeApplicationResponse {
applicationArn: string;
applicationCreationDate: number;
applicationDescription?: string | null;
applicationId: string;
applicationLastUpdateDate: number;
applicationName: string;
applicationState: ApplicationState;
applicationUrl: string;
errorMessage?: string | null;
roleArn: string;
ssoClientId?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
applicationArn: string
[src]

The ARN of the web application.

§
applicationCreationDate: number
[src]

The date (in Unix epoch time) when the application was created.

§
applicationDescription?: string | null
[src]

An optional description of the web application.

§
applicationId: string
[src]

The unique Id of the web application.

§
applicationLastUpdateDate: number
[src]

The date (in Unix epoch time) when the application was last updated.

§
applicationName: string
[src]

The name of the web application.

§
applicationState: ApplicationState
[src]

The current state of the web application.

§
applicationUrl: string
[src]

The URL of the web application.

§
errorMessage?: string | null
[src]

A message indicating why the DescribeApplication API failed.

§
roleArn: string
[src]

The ARN of the role that the web application assumes when it interacts with AWS IoT Core.

§
ssoClientId?: string | null
[src]

The Id of the single sign-on client that you use to authenticate and authorize users on the web application.

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

A set of key/value pairs that you can use to manage the web application resource.