import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface BannerConfig extends cdktf.TerraformMetaArguments { /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is `all`. * - Choices: `all`, `attributes` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/banner#delete_mode Banner#delete_mode} */ readonly deleteMode?: string; /** * A device name from the provider configuration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/banner#device Banner#device} */ readonly device?: string; /** * Banner message * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/banner#exec_banner Banner#exec_banner} */ readonly execBanner?: string; /** * Banner message * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/banner#login_banner Banner#login_banner} */ readonly loginBanner?: string; /** * Banner message * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/banner#motd_banner Banner#motd_banner} */ readonly motdBanner?: string; /** * Banner message * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/banner#prompt_timeout_banner Banner#prompt_timeout_banner} */ readonly promptTimeoutBanner?: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/banner iosxe_banner} */ export declare class Banner extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_banner"; /** * Generates CDKTF code for importing a Banner 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 Banner to import * @param importFromId The id of the existing Banner that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/banner#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Banner 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/ciscodevnet/iosxe/0.15.0/docs/resources/banner iosxe_banner} 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 BannerConfig = {} */ constructor(scope: Construct, id: string, config?: BannerConfig); private _deleteMode?; get deleteMode(): string; set deleteMode(value: string); resetDeleteMode(): void; get deleteModeInput(): string; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; private _execBanner?; get execBanner(): string; set execBanner(value: string); resetExecBanner(): void; get execBannerInput(): string; get id(): any; private _loginBanner?; get loginBanner(): string; set loginBanner(value: string); resetLoginBanner(): void; get loginBannerInput(): string; private _motdBanner?; get motdBanner(): string; set motdBanner(value: string); resetMotdBanner(): void; get motdBannerInput(): string; private _promptTimeoutBanner?; get promptTimeoutBanner(): string; set promptTimeoutBanner(value: string); resetPromptTimeoutBanner(): void; get promptTimeoutBannerInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }