import { Asset } from 'aws-cdk-lib/aws-s3-assets'; import { Construct } from 'constructs'; export interface ContainerSourceAssetFromPathProps { /** * Absolute path to the directory containing the Dockerfile and source files. */ readonly sourcePath: string; } /** * Packages a directory (containing a Dockerfile) as an S3 asset for CodeBuild. * Unlike ContainerSourceAsset which resolves from an AgentEnvSpec, this takes a raw path. */ export declare class ContainerSourceAssetFromPath extends Construct { readonly asset: Asset; constructor(scope: Construct, id: string, props: ContainerSourceAssetFromPathProps); } //# sourceMappingURL=ContainerSourceAssetFromPath.d.ts.map