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.4/services/augmentedairuntime.ts?docs=full";
class AugmentedAIRuntime {
constructor(apiFactory: client.ApiFactory);
async deleteHumanLoop(params: DeleteHumanLoopRequest, opts?: client.RequestOptions): Promise<void>;
async describeHumanLoop(params: DescribeHumanLoopRequest, opts?: client.RequestOptions): Promise<DescribeHumanLoopResponse>;
async listHumanLoops(params: ListHumanLoopsRequest, opts?: client.RequestOptions): Promise<ListHumanLoopsResponse>;
async startHumanLoop(params: StartHumanLoopRequest, opts?: client.RequestOptions): Promise<StartHumanLoopResponse>;
async stopHumanLoop(params: StopHumanLoopRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

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

§Methods

§
deleteHumanLoop(params: DeleteHumanLoopRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes the specified human loop for a flow definition.

If the human loop was deleted, this operation will return a ResourceNotFoundException.

§

Returns information about the specified human loop. If the human loop was deleted, this operation will return a ResourceNotFoundException error.

§

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

§

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

§
stopHumanLoop(params: StopHumanLoopRequest, opts?: client.RequestOptions): Promise<void>
[src]

Stops the specified human loop.

§Static Properties