agent-claw: automated task changes
This commit is contained in:
25
cdk/node_modules/aws-cdk-lib/aws-ecs/lib/images/ecr.d.ts
generated
vendored
Normal file
25
cdk/node_modules/aws-cdk-lib/aws-ecs/lib/images/ecr.d.ts
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import type * as ecr from '../../../aws-ecr';
|
||||
import type { ContainerDefinition } from '../container-definition';
|
||||
import type { ContainerImageConfig } from '../container-image';
|
||||
import { ContainerImage } from '../container-image';
|
||||
/**
|
||||
* An image from an Amazon ECR repository.
|
||||
*/
|
||||
export declare class EcrImage extends ContainerImage {
|
||||
private readonly repository;
|
||||
private readonly tagOrDigest;
|
||||
/**
|
||||
* The image name. Images in Amazon ECR repositories can be specified by either using the full registry/repository:tag or
|
||||
* registry/repository@digest.
|
||||
*
|
||||
* For example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>:latest or
|
||||
* 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>@sha256:94afd1f2e64d908bc90dbca0035a5b567EXAMPLE.
|
||||
*/
|
||||
readonly imageName: string;
|
||||
/**
|
||||
* Constructs a new instance of the EcrImage class.
|
||||
*/
|
||||
constructor(repository: ecr.IRepository, tagOrDigest: string);
|
||||
bind(_scope: Construct, containerDefinition: ContainerDefinition): ContainerImageConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user