import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface GaapDomainErrorPageConfig extends cdktf.TerraformMetaArguments { /** * New response body. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_domain_error_page#body GaapDomainErrorPage#body} */ readonly body: string; /** * Response headers to be removed. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_domain_error_page#clear_headers GaapDomainErrorPage#clear_headers} */ readonly clearHeaders?: string[]; /** * HTTP domain. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_domain_error_page#domain GaapDomainErrorPage#domain} */ readonly domain: string; /** * Original error codes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_domain_error_page#error_codes GaapDomainErrorPage#error_codes} */ readonly errorCodes: number[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_domain_error_page#id GaapDomainErrorPage#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * ID of the layer7 listener. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_domain_error_page#listener_id GaapDomainErrorPage#listener_id} */ readonly listenerId: string; /** * New error code. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_domain_error_page#new_error_code GaapDomainErrorPage#new_error_code} */ readonly newErrorCode?: number; /** * Response headers to be set. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_domain_error_page#set_headers GaapDomainErrorPage#set_headers} */ readonly setHeaders?: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_domain_error_page tencentcloud_gaap_domain_error_page} */ export declare class GaapDomainErrorPage extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_gaap_domain_error_page"; /** * Generates CDKTF code for importing a GaapDomainErrorPage 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 GaapDomainErrorPage to import * @param importFromId The id of the existing GaapDomainErrorPage that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_domain_error_page#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the GaapDomainErrorPage 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/tencentcloudstack/tencentcloud/1.82.49/docs/resources/gaap_domain_error_page tencentcloud_gaap_domain_error_page} 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 GaapDomainErrorPageConfig */ constructor(scope: Construct, id: string, config: GaapDomainErrorPageConfig); private _body?; get body(): string; set body(value: string); get bodyInput(): string; private _clearHeaders?; get clearHeaders(): string[]; set clearHeaders(value: string[]); resetClearHeaders(): void; get clearHeadersInput(): string[]; private _domain?; get domain(): string; set domain(value: string); get domainInput(): string; private _errorCodes?; get errorCodes(): number[]; set errorCodes(value: number[]); get errorCodesInput(): number[]; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _listenerId?; get listenerId(): string; set listenerId(value: string); get listenerIdInput(): string; private _newErrorCode?; get newErrorCode(): number; set newErrorCode(value: number); resetNewErrorCode(): void; get newErrorCodeInput(): number; private _setHeaders?; get setHeaders(): { [key: string]: string; }; set setHeaders(value: { [key: string]: string; }); resetSetHeaders(): void; get setHeadersInput(): { [key: string]: string; }; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }