agent-claw: automated task changes
This commit is contained in:
13
cdk/node_modules/aws-cdk-lib/aws-ecr/lib/mixins/repository.d.ts
generated
vendored
Normal file
13
cdk/node_modules/aws-cdk-lib/aws-ecr/lib/mixins/repository.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { IConstruct } from 'constructs';
|
||||
import { Mixin } from '../../../core/lib/mixins';
|
||||
import { CfnRepository } from '../ecr.generated';
|
||||
/**
|
||||
* ECR-specific Mixin to force-delete all images from a repository
|
||||
* when the repository is removed from the stack or when the stack is deleted.
|
||||
*
|
||||
* Sets the `emptyOnDelete` property on the repository.
|
||||
*/
|
||||
export declare class RepositoryAutoDeleteImages extends Mixin {
|
||||
supports(construct: IConstruct): construct is CfnRepository;
|
||||
applyTo(construct: IConstruct): void;
|
||||
}
|
||||
Reference in New Issue
Block a user