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

TestRepositoryTriggersOutput

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

Represents the output of a test repository triggers operation.

interface TestRepositoryTriggersOutput {
failedExecutions?: RepositoryTriggerExecutionFailure[] | null;
successfulExecutions?: string[] | null;
}

§Properties

§
failedExecutions?: RepositoryTriggerExecutionFailure[] | null
[src]

The list of triggers that were not tested. This list provides the names of the triggers that could not be tested, separated by commas.

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

The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.