import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface EnvironmentAccountConfig extends cdktf.TerraformMetaArguments { /** * The deployment account that owns this account. Aka the service account. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/environment_account#owner_account_id EnvironmentAccount#owner_account_id} */ readonly ownerAccountId: string; } /** * Represents a {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/environment_account vy_environment_account} */ export declare class EnvironmentAccount extends cdktf.TerraformResource { static readonly tfResourceType = "vy_environment_account"; /** * Generates CDKTF code for importing a EnvironmentAccount 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 EnvironmentAccount to import * @param importFromId The id of the existing EnvironmentAccount that should be imported. Refer to the {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/environment_account#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the EnvironmentAccount 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/resources/environment_account vy_environment_account} Resource * * @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 EnvironmentAccountConfig */ constructor(scope: Construct, id: string, config: EnvironmentAccountConfig); get id(): any; private _ownerAccountId?; get ownerAccountId(): string; set ownerAccountId(value: string); get ownerAccountIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }