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

Project

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

Represents an operating-system neutral workspace for running and managing tests.

interface Project {
arn?: string | null;
created?: Date | number | null;
defaultJobTimeoutMinutes?: number | null;
name?: string | null;
vpcConfig?: VpcConfig | null;
}

§Properties

§
arn?: string | null
[src]

The project's ARN.

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

When the project was created.

§
defaultJobTimeoutMinutes?: number | null
[src]

The default number of minutes (at the project level) a test run executes before it times out. The default value is 150 minutes.

§
name?: string | null
[src]

The project's name.

§
vpcConfig?: VpcConfig | null
[src]

The VPC security groups and subnets that are attached to a project.