agent-claw: automated task changes

This commit is contained in:
daniel
2026-05-06 18:55:16 -05:00
parent 38905bb1e9
commit 732b00fb66
8494 changed files with 2018127 additions and 4 deletions

View File

@@ -0,0 +1,29 @@
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';
import type { IRepositoryRef } from '../../../interfaces/generated/aws-ecr-interfaces.generated';
/**
* Construction properties of the `InspectorEcrImageScanAction`.
*/
export interface InspectorEcrImageScanActionProps extends InspectorScanActionBaseProps {
/**
* The Amazon ECR repository where the image is pushed.
*/
readonly repository: IRepositoryRef;
/**
* The tag used for the image.
*
* @default 'latest'
*/
readonly imageTag?: string;
}
/**
* CodePipeline invoke action that uses AWS InspectorScan for ECR images.
*/
export declare class InspectorEcrImageScanAction extends InspectorScanActionBase {
private readonly ecrProps;
constructor(props: InspectorEcrImageScanActionProps);
protected renderActionConfiguration(): Record<string, any>;
protected bound(scope: Construct, stage: codepipeline.IStage, options: codepipeline.ActionBindOptions): codepipeline.ActionConfig;
}