import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataVyEcsImageConfig extends cdktf.TerraformMetaArguments { /** * The ECR repository name where the image to the ECS service is stored. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/ecs_image#ecr_repository_name DataVyEcsImage#ecr_repository_name} */ readonly ecrRepositoryName: string; /** * The GitHub repository name for the ECS service. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/ecs_image#github_repository_name DataVyEcsImage#github_repository_name} */ readonly githubRepositoryName: string; /** * The directory in the GitHub repository where the code is stored. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/ecs_image#working_directory DataVyEcsImage#working_directory} */ readonly workingDirectory?: string; } /** * Represents a {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/ecs_image vy_ecs_image} */ export declare class DataVyEcsImage extends cdktf.TerraformDataSource { static readonly tfResourceType = "vy_ecs_image"; /** * Generates CDKTF code for importing a DataVyEcsImage 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 DataVyEcsImage to import * @param importFromId The id of the existing DataVyEcsImage that should be imported. Refer to the {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/data-sources/ecs_image#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataVyEcsImage 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/ecs_image vy_ecs_image} 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 DataVyEcsImageConfig */ constructor(scope: Construct, id: string, config: DataVyEcsImageConfig); get branch(): any; private _ecrRepositoryName?; get ecrRepositoryName(): string; set ecrRepositoryName(value: string); 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 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; }; }