agent-claw: automated task changes
This commit is contained in:
26
cdk/node_modules/aws-cdk-lib/aws-stepfunctions/lib/step-functions-task.d.ts
generated
vendored
Normal file
26
cdk/node_modules/aws-cdk-lib/aws-stepfunctions/lib/step-functions-task.d.ts
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import './states/task';
|
||||
import type * as cloudwatch from '../../aws-cloudwatch';
|
||||
import type * as iam from '../../aws-iam';
|
||||
import type { Duration } from '../../core';
|
||||
/**
|
||||
* Three ways to call an integrated service: Request Response, Run a Job and Wait for a Callback with Task Token.
|
||||
* @see https://docs.aws.amazon.com/step-functions/latest/dg/connect-to-resource.html
|
||||
*
|
||||
* Here, they are named as FIRE_AND_FORGET, SYNC and WAIT_FOR_TASK_TOKEN respectfully.
|
||||
*
|
||||
* @default FIRE_AND_FORGET
|
||||
*/
|
||||
export declare enum ServiceIntegrationPattern {
|
||||
/**
|
||||
* Call a service and progress to the next state immediately after the API call completes
|
||||
*/
|
||||
FIRE_AND_FORGET = "FIRE_AND_FORGET",
|
||||
/**
|
||||
* Call a service and wait for a job to complete.
|
||||
*/
|
||||
SYNC = "SYNC",
|
||||
/**
|
||||
* Call a service with a task token and wait until that token is returned by SendTaskSuccess/SendTaskFailure with payload.
|
||||
*/
|
||||
WAIT_FOR_TASK_TOKEN = "WAIT_FOR_TASK_TOKEN"
|
||||
}
|
||||
Reference in New Issue
Block a user