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

AugmentedAIRuntime

import { AugmentedAIRuntime } from "https://aws-api.deno.dev/v0.1/services/augmentedairuntime.ts?docs=full";
class AugmentedAIRuntime {
constructor(apiFactory: client.ApiFactory);
async deleteHumanLoop(params: DeleteHumanLoopRequest): Promise<void>;
async describeHumanLoop(params: DescribeHumanLoopRequest): Promise<DescribeHumanLoopResponse>;
async listHumanLoops(params: ListHumanLoopsRequest): Promise<ListHumanLoopsResponse>;
async startHumanLoop(params: StartHumanLoopRequest): Promise<StartHumanLoopResponse>;
async stopHumanLoop(params: StopHumanLoopRequest): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new AugmentedAIRuntime(apiFactory: client.ApiFactory)
[src]

§Methods

§
deleteHumanLoop(params: DeleteHumanLoopRequest): Promise<void>
[src]

Deletes the specified human loop for a flow definition.

§
describeHumanLoop(params: DescribeHumanLoopRequest): Promise<DescribeHumanLoopResponse>
[src]

Returns information about the specified human loop.

§
listHumanLoops(params: ListHumanLoopsRequest): Promise<ListHumanLoopsResponse>
[src]

Returns information about human loops, given the specified parameters. If a human loop was deleted, it will not be included.

§
startHumanLoop(params: StartHumanLoopRequest): Promise<StartHumanLoopResponse>
[src]

Starts a human loop, provided that at least one activation condition is met.

§
stopHumanLoop(params: StopHumanLoopRequest): Promise<void>
[src]

Stops the specified human loop.

§Static Properties