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

ExecutorConfiguration

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

The action engine, or executor, related to the supported integration model used to create and update the action type. The available executor types are Lambda and JobWorker.

interface ExecutorConfiguration {
jobWorkerExecutorConfiguration?: JobWorkerExecutorConfiguration | null;
lambdaExecutorConfiguration?: LambdaExecutorConfiguration | null;
}

§Properties

§
jobWorkerExecutorConfiguration?: JobWorkerExecutorConfiguration | null
[src]

Details about the JobWorker executor of the action type.

§
lambdaExecutorConfiguration?: LambdaExecutorConfiguration | null
[src]

Details about the Lambda executor of the action type.