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

SuiteRunInformation

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

Information about the suite run.

Requires permission to access the SuiteRunInformation action.

interface SuiteRunInformation {
createdAt?: Date | number | null;
endAt?: Date | number | null;
failed?: number | null;
passed?: number | null;
startedAt?: Date | number | null;
status?: SuiteRunStatus | null;
suiteDefinitionId?: string | null;
suiteDefinitionName?: string | null;
suiteDefinitionVersion?: string | null;
suiteRunId?: string | null;
}

§Properties

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

Date (in Unix epoch time) when the suite run was created.

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

Date (in Unix epoch time) when the suite run ended.

§
failed?: number | null
[src]

Number of test cases that failed in the suite run.

§
passed?: number | null
[src]

Number of test cases that passed in the suite run.

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

Date (in Unix epoch time) when the suite run was started.

§
status?: SuiteRunStatus | null
[src]

Status of the suite run.

§
suiteDefinitionId?: string | null
[src]

Suite definition ID of the suite run.

§
suiteDefinitionName?: string | null
[src]

Suite definition name of the suite run.

§
suiteDefinitionVersion?: string | null
[src]

Suite definition version of the suite run.

§
suiteRunId?: string | null
[src]

Suite run ID of the suite run.