import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface AsNotificationConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/as_notification#id AsNotification#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; /** * A list of Notification Types that trigger notifications. Acceptable values are `SCALE_OUT_FAILED`, `SCALE_IN_SUCCESSFUL`, `SCALE_IN_FAILED`, `REPLACE_UNHEALTHY_INSTANCE_SUCCESSFUL` and `REPLACE_UNHEALTHY_INSTANCE_FAILED`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/as_notification#notification_types AsNotification#notification_types} */ readonly notificationTypes: string[]; /** * A group of user IDs to be notified. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/as_notification#notification_user_group_ids AsNotification#notification_user_group_ids} */ readonly notificationUserGroupIds: string[]; /** * ID of a scaling group. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/as_notification#scaling_group_id AsNotification#scaling_group_id} */ readonly scalingGroupId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/as_notification tencentcloud_as_notification} */ export declare class AsNotification extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_as_notification"; /** * Generates CDKTF code for importing a AsNotification 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 AsNotification to import * @param importFromId The id of the existing AsNotification that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/as_notification#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the AsNotification 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/as_notification tencentcloud_as_notification} 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 AsNotificationConfig */ constructor(scope: Construct, id: string, config: AsNotificationConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _notificationTypes?; get notificationTypes(): string[]; set notificationTypes(value: string[]); get notificationTypesInput(): string[]; private _notificationUserGroupIds?; get notificationUserGroupIds(): string[]; set notificationUserGroupIds(value: string[]); get notificationUserGroupIdsInput(): string[]; private _scalingGroupId?; get scalingGroupId(): string; set scalingGroupId(value: string); get scalingGroupIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }