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

ListArtifactsRequest

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

Describes the request structure for the list artifacts request.

interface ListArtifactsRequest {
appId: string;
branchName: string;
jobId: string;
maxResults?: number | null;
nextToken?: string | null;
}

§Properties

§
appId: string
[src]

The unique ID for an Amplify app.

§
branchName: string
[src]

The name of a branch that is part of an Amplify app.

§
jobId: string
[src]

The unique ID for a job.

§
maxResults?: number | null
[src]

The maximum number of records to list in a single response.

§
nextToken?: string | null
[src]

A pagination token. Set to null to start listing artifacts from start. If a non-null pagination token is returned in a result, pass its value in here to list more artifacts.