ListArtifacts
Source:
src/AWS/Amplify/ListArtifacts.ts
Runtime binding for amplify:ListArtifacts.
Bind an App in the function’s init phase to get a callable that
lists the artifacts (e.g. test reports) a build job produced. Fetch an
individual artifact with GetArtifactUrl. Provide the implementation
with Effect.provide(AWS.Amplify.ListArtifactsHttp).
Reading Artifacts
Section titled “Reading Artifacts”// init — bind the operation to the appconst listArtifacts = yield* AWS.Amplify.ListArtifacts(app);
// runtimeconst { artifacts } = yield* listArtifacts({ branchName: "main", jobId: "42",});