import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DeploymentAccountConfig extends cdktf.TerraformMetaArguments { /** * A Slack channel where info about deployments go * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/deployment_account#slack_channel DeploymentAccount#slack_channel} */ readonly slackChannel: string; } /** * Represents a {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/deployment_account vy_deployment_account} */ export declare class DeploymentAccount extends cdktf.TerraformResource { static readonly tfResourceType = "vy_deployment_account"; /** * Generates CDKTF code for importing a DeploymentAccount 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 DeploymentAccount to import * @param importFromId The id of the existing DeploymentAccount that should be imported. Refer to the {@link https://registry.terraform.io/providers/nsbno/vy/1.1.0/docs/resources/deployment_account#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DeploymentAccount 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/deployment_account vy_deployment_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 DeploymentAccountConfig */ constructor(scope: Construct, id: string, config: DeploymentAccountConfig); get id(): any; private _slackChannel?; get slackChannel(): string; set slackChannel(value: string); get slackChannelInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }