agent-claw: automated task changes
This commit is contained in:
55
cdk/node_modules/aws-cdk-lib/pipelines/lib/blueprint/manual-approval.d.ts
generated
vendored
Normal file
55
cdk/node_modules/aws-cdk-lib/pipelines/lib/blueprint/manual-approval.d.ts
generated
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
import { Step } from './step';
|
||||
import type { ITopic } from '../../../aws-sns';
|
||||
/**
|
||||
* Construction properties for a `ManualApprovalStep`
|
||||
*/
|
||||
export interface ManualApprovalStepProps {
|
||||
/**
|
||||
* The comment to display with this manual approval
|
||||
*
|
||||
* @default - No comment
|
||||
*/
|
||||
readonly comment?: string;
|
||||
/**
|
||||
* The URL for review associated with this manual approval
|
||||
*
|
||||
* @default - No URL
|
||||
*/
|
||||
readonly reviewUrl?: string;
|
||||
/**
|
||||
* Optional SNS topic to send notifications to when an approval is pending
|
||||
*
|
||||
* @default - No notifications
|
||||
*/
|
||||
readonly notificationTopic?: ITopic;
|
||||
}
|
||||
/**
|
||||
* A manual approval step
|
||||
*
|
||||
* If this step is added to a Pipeline, the Pipeline will
|
||||
* be paused waiting for a human to resume it
|
||||
*
|
||||
* Only engines that support pausing the deployment will
|
||||
* support this step type.
|
||||
*/
|
||||
export declare class ManualApprovalStep extends Step {
|
||||
/**
|
||||
* The comment associated with this manual approval
|
||||
*
|
||||
* @default - No comment
|
||||
*/
|
||||
readonly comment?: string;
|
||||
/**
|
||||
* The URL for review associated with this manual approval
|
||||
*
|
||||
* @default - No URL
|
||||
*/
|
||||
readonly reviewUrl?: string;
|
||||
/**
|
||||
* Optional SNS topic to send notifications
|
||||
*
|
||||
* @default - No notifications
|
||||
*/
|
||||
readonly notificationTopic?: ITopic;
|
||||
constructor(id: string, props?: ManualApprovalStepProps);
|
||||
}
|
||||
Reference in New Issue
Block a user