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

SendProjectSessionActionRequest

import type { SendProjectSessionActionRequest } from "https://aws-api.deno.dev/v0.3/services/databrew.ts?docs=full";
interface SendProjectSessionActionRequest {
ClientSessionId?: string | null;
Name: string;
Preview?: boolean | null;
RecipeStep?: RecipeStep | null;
StepIndex?: number | null;
ViewFrame?: ViewFrame | null;
}

§Properties

§
ClientSessionId?: string | null
[src]

A unique identifier for an interactive session that's currently open and ready for work. The action will be performed on this session.

§
Name: string
[src]

The name of the project to apply the action to.

§
Preview?: boolean | null
[src]

If true, the result of the recipe step will be returned, but not applied.

§
RecipeStep?: RecipeStep | null
[src]
§
StepIndex?: number | null
[src]

The index from which to preview a step. This index is used to preview the result of steps that have already been applied, so that the resulting view frame is from earlier in the view frame stack.

§
ViewFrame?: ViewFrame | null
[src]