import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CvmActionTimerConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_action_timer#id CvmActionTimer#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; /** * Instance ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_action_timer#instance_id CvmActionTimer#instance_id} */ readonly instanceId: string; /** * action_timer block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_action_timer#action_timer CvmActionTimer#action_timer} */ readonly actionTimer: CvmActionTimerActionTimer; } export interface CvmActionTimerActionTimer { /** * Execution time, expressed according to ISO8601 standard and using UTC time. The format is YYYY-MM-DDThh:mm:ssZ. For example, 2018-05-29T11:26:40Z, the execution time must be 5 minutes longer than the current time. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_action_timer#action_time CvmActionTimer#action_time} */ readonly actionTime?: string; /** * Timer action, currently only supports destroying one value: TerminateInstances. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_action_timer#timer_action CvmActionTimer#timer_action} */ readonly timerAction?: string; } export declare function cvmActionTimerActionTimerToTerraform(struct?: CvmActionTimerActionTimerOutputReference | CvmActionTimerActionTimer): any; export declare function cvmActionTimerActionTimerToHclTerraform(struct?: CvmActionTimerActionTimerOutputReference | CvmActionTimerActionTimer): any; export declare class CvmActionTimerActionTimerOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): CvmActionTimerActionTimer | undefined; set internalValue(value: CvmActionTimerActionTimer | undefined); private _actionTime?; get actionTime(): string; set actionTime(value: string); resetActionTime(): void; get actionTimeInput(): string; private _timerAction?; get timerAction(): string; set timerAction(value: string); resetTimerAction(): void; get timerActionInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_action_timer tencentcloud_cvm_action_timer} */ export declare class CvmActionTimer extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cvm_action_timer"; /** * Generates CDKTF code for importing a CvmActionTimer 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 CvmActionTimer to import * @param importFromId The id of the existing CvmActionTimer that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cvm_action_timer#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CvmActionTimer 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/cvm_action_timer tencentcloud_cvm_action_timer} 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 CvmActionTimerConfig */ constructor(scope: Construct, id: string, config: CvmActionTimerConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceId?; get instanceId(): string; set instanceId(value: string); get instanceIdInput(): string; private _actionTimer; get actionTimer(): CvmActionTimerActionTimerOutputReference; putActionTimer(value: CvmActionTimerActionTimer): void; get actionTimerInput(): CvmActionTimerActionTimer; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }