import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ScfTerminateAsyncEventConfig extends cdktf.TerraformMetaArguments { /** * Function name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_terminate_async_event#function_name ScfTerminateAsyncEvent#function_name} */ readonly functionName: string; /** * Whether to enable grace shutdown. If it's true, a SIGTERM signal is sent to the specified request. See [Sending termination signal](https://www.tencentcloud.com/document/product/583/63969?from_cn_redirect=1#.E5.8F.91.E9.80.81.E7.BB.88.E6.AD.A2.E4.BF.A1.E5.8F.B7]. It's set to false by default. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_terminate_async_event#grace_shutdown ScfTerminateAsyncEvent#grace_shutdown} */ readonly graceShutdown?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_terminate_async_event#id ScfTerminateAsyncEvent#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; /** * Terminated invocation request ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_terminate_async_event#invoke_request_id ScfTerminateAsyncEvent#invoke_request_id} */ readonly invokeRequestId: string; /** * Namespace. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_terminate_async_event#namespace ScfTerminateAsyncEvent#namespace} */ readonly namespace?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_terminate_async_event tencentcloud_scf_terminate_async_event} */ export declare class ScfTerminateAsyncEvent extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_scf_terminate_async_event"; /** * Generates CDKTF code for importing a ScfTerminateAsyncEvent 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 ScfTerminateAsyncEvent to import * @param importFromId The id of the existing ScfTerminateAsyncEvent that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_terminate_async_event#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ScfTerminateAsyncEvent 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/scf_terminate_async_event tencentcloud_scf_terminate_async_event} 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 ScfTerminateAsyncEventConfig */ constructor(scope: Construct, id: string, config: ScfTerminateAsyncEventConfig); private _functionName?; get functionName(): string; set functionName(value: string); get functionNameInput(): string; private _graceShutdown?; get graceShutdown(): boolean | cdktf.IResolvable; set graceShutdown(value: boolean | cdktf.IResolvable); resetGraceShutdown(): void; get graceShutdownInput(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _invokeRequestId?; get invokeRequestId(): string; set invokeRequestId(value: string); get invokeRequestIdInput(): string; private _namespace?; get namespace(): string; set namespace(value: string); resetNamespace(): void; get namespaceInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }