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

CustomerArtifactPaths

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

A JSON object that specifies the paths where the artifacts generated by the customer's tests, on the device or in the test environment, are pulled from.

Specify deviceHostPaths and optionally specify either iosPaths or androidPaths.

For web app tests, you can specify both iosPaths and androidPaths.

interface CustomerArtifactPaths {
androidPaths?: string[] | null;
deviceHostPaths?: string[] | null;
iosPaths?: string[] | null;
}

§Properties

§
androidPaths?: string[] | null
[src]

Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests are pulled from.

§
deviceHostPaths?: string[] | null
[src]

Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests are pulled from.

§
iosPaths?: string[] | null
[src]

Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests are pulled from.