agent-claw: automated task changes
This commit is contained in:
24
cdk/node_modules/aws-cdk-lib/aws-ecs/lib/images/asset-image.d.ts
generated
vendored
Normal file
24
cdk/node_modules/aws-cdk-lib/aws-ecs/lib/images/asset-image.d.ts
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import type { DockerImageAssetOptions } from '../../../aws-ecr-assets';
|
||||
import type { ContainerDefinition } from '../container-definition';
|
||||
import type { ContainerImageConfig } from '../container-image';
|
||||
import { ContainerImage } from '../container-image';
|
||||
/**
|
||||
* The properties for building an AssetImage.
|
||||
*/
|
||||
export interface AssetImageProps extends DockerImageAssetOptions {
|
||||
}
|
||||
/**
|
||||
* An image that will be built from a local directory with a Dockerfile
|
||||
*/
|
||||
export declare class AssetImage extends ContainerImage {
|
||||
private readonly directory;
|
||||
private readonly props;
|
||||
/**
|
||||
* Constructs a new instance of the AssetImage class.
|
||||
*
|
||||
* @param directory The directory containing the Dockerfile
|
||||
*/
|
||||
constructor(directory: string, props?: AssetImageProps);
|
||||
bind(scope: Construct, containerDefinition: ContainerDefinition): ContainerImageConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user