agent-claw: automated task changes
This commit is contained in:
21
cdk/node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/inspector/source-code-scan-action.d.ts
generated
vendored
Normal file
21
cdk/node_modules/aws-cdk-lib/aws-codepipeline-actions/lib/inspector/source-code-scan-action.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import type { InspectorScanActionBaseProps } from './scan-action-base';
|
||||
import { InspectorScanActionBase } from './scan-action-base';
|
||||
import type * as codepipeline from '../../../aws-codepipeline';
|
||||
/**
|
||||
* Construction properties of the `InspectorSourceCodeScanAction`.
|
||||
*/
|
||||
export interface InspectorSourceCodeScanActionProps extends InspectorScanActionBaseProps {
|
||||
/**
|
||||
* The source code to scan for vulnerabilities.
|
||||
*/
|
||||
readonly input: codepipeline.Artifact;
|
||||
}
|
||||
/**
|
||||
* CodePipeline invoke action that uses AWS InspectorScan for source code.
|
||||
*/
|
||||
export declare class InspectorSourceCodeScanAction extends InspectorScanActionBase {
|
||||
constructor(props: InspectorSourceCodeScanActionProps);
|
||||
protected renderActionConfiguration(): Record<string, any>;
|
||||
protected bound(scope: Construct, stage: codepipeline.IStage, options: codepipeline.ActionBindOptions): codepipeline.ActionConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user