agent-claw: automated task changes
This commit is contained in:
45
cdk/node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/succeed.d.ts
generated
vendored
Normal file
45
cdk/node_modules/aws-cdk-lib/aws-stepfunctions/lib/states/succeed.d.ts
generated
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import type { JsonataCommonOptions, JsonPathCommonOptions, StateBaseProps } from './state';
|
||||
import { State } from './state';
|
||||
import type { INextable } from '../types';
|
||||
import { QueryLanguage } from '../types';
|
||||
/**
|
||||
* Properties for defining a Succeed state that using JSONPath
|
||||
*/
|
||||
export interface SucceedJsonPathProps extends StateBaseProps, JsonPathCommonOptions {
|
||||
}
|
||||
/**
|
||||
* Properties for defining a Succeed state that using JSONata
|
||||
*/
|
||||
export interface SucceedJsonataProps extends StateBaseProps, JsonataCommonOptions {
|
||||
}
|
||||
/**
|
||||
* Properties for defining a Succeed state
|
||||
*/
|
||||
export interface SucceedProps extends StateBaseProps, JsonPathCommonOptions, JsonataCommonOptions {
|
||||
}
|
||||
/**
|
||||
* Define a Succeed state in the state machine
|
||||
*
|
||||
* Reaching a Succeed state terminates the state execution in success.
|
||||
*/
|
||||
export declare class Succeed extends State {
|
||||
/**
|
||||
* Define a Succeed state in the state machine
|
||||
*
|
||||
* Reaching a Succeed state terminates the state execution in success.
|
||||
*/
|
||||
static jsonPath(scope: Construct, id: string, props?: SucceedJsonPathProps): Succeed;
|
||||
/**
|
||||
* Define a Succeed state in the state machine
|
||||
*
|
||||
* Reaching a Succeed state terminates the state execution in success.
|
||||
*/
|
||||
static jsonata(scope: Construct, id: string, props?: SucceedJsonataProps): Succeed;
|
||||
readonly endStates: INextable[];
|
||||
constructor(scope: Construct, id: string, props?: SucceedProps);
|
||||
/**
|
||||
* Return the Amazon States Language object for this state
|
||||
*/
|
||||
toStateJson(queryLanguage?: QueryLanguage): object;
|
||||
}
|
||||
Reference in New Issue
Block a user