import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataVyLambdaArtifactConfig extends cdktf.TerraformMetaArguments { /** * *Only if artifact type is ECR.* The ECR repository name where the Lambda image is stored. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/lambda_artifact#ecr_repository_name DataVyLambdaArtifact#ecr_repository_name} */ readonly ecrRepositoryName?: string; /** * The GitHub repository name to find the artifact for. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/lambda_artifact#github_repository_name DataVyLambdaArtifact#github_repository_name} */ readonly githubRepositoryName: string; /** * The directory in the GitHub repository to find the artifact for. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/lambda_artifact#working_directory DataVyLambdaArtifact#working_directory} */ readonly workingDirectory?: string; } /** * Represents a {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/lambda_artifact vy_lambda_artifact} */ export declare class DataVyLambdaArtifact extends cdktf.TerraformDataSource { static readonly tfResourceType = "vy_lambda_artifact"; /** * Generates CDKTF code for importing a DataVyLambdaArtifact resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the DataVyLambdaArtifact to import * @param importFromId The id of the existing DataVyLambdaArtifact that should be imported. Refer to the {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/lambda_artifact#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataVyLambdaArtifact to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/lambda_artifact vy_lambda_artifact} Data Source * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options DataVyLambdaArtifactConfig */ constructor(scope: Construct, id: string, config: DataVyLambdaArtifactConfig); get branch(): any; private _ecrRepositoryName?; get ecrRepositoryName(): string; set ecrRepositoryName(value: string); resetEcrRepositoryName(): void; get ecrRepositoryNameInput(): string; get ecrRepositoryUri(): any; get gitSha(): any; private _githubRepositoryName?; get githubRepositoryName(): string; set githubRepositoryName(value: string); get githubRepositoryNameInput(): string; get id(): any; get region(): any; get s3BucketName(): any; get s3ObjectPath(): any; get s3ObjectVersion(): any; get serviceAccountId(): any; private _workingDirectory?; get workingDirectory(): string; set workingDirectory(value: string); resetWorkingDirectory(): void; get workingDirectoryInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }