import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ScfSyncInvokeFunctionConfig extends cdktf.TerraformMetaArguments { /** * Function running parameter, which is in the JSON format. Maximum parameter size is 6 MB. This field corresponds to event input parameter. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_sync_invoke_function#event ScfSyncInvokeFunction#event} */ readonly event?: string; /** * Function name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_sync_invoke_function#function_name ScfSyncInvokeFunction#function_name} */ readonly functionName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_sync_invoke_function#id ScfSyncInvokeFunction#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; /** * Valid value: None (default) or Tail. If the value is Tail, log in the response will contain the corresponding function execution log (up to 4KB). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_sync_invoke_function#log_type ScfSyncInvokeFunction#log_type} */ readonly logType?: string; /** * Namespace. default is used if it's left empty. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_sync_invoke_function#namespace ScfSyncInvokeFunction#namespace} */ readonly namespace?: string; /** * Version or alias of the function. It defaults to $DEFAULT. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_sync_invoke_function#qualifier ScfSyncInvokeFunction#qualifier} */ readonly qualifier?: string; /** * Traffic routing config in json format, e.g., {k:v}. Please note that both k and v must be strings. Up to 1024 bytes allowed. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_sync_invoke_function#routing_key ScfSyncInvokeFunction#routing_key} */ readonly routingKey?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_sync_invoke_function tencentcloud_scf_sync_invoke_function} */ export declare class ScfSyncInvokeFunction extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_scf_sync_invoke_function"; /** * Generates CDKTF code for importing a ScfSyncInvokeFunction 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 ScfSyncInvokeFunction to import * @param importFromId The id of the existing ScfSyncInvokeFunction that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_sync_invoke_function#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ScfSyncInvokeFunction 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_sync_invoke_function tencentcloud_scf_sync_invoke_function} 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 ScfSyncInvokeFunctionConfig */ constructor(scope: Construct, id: string, config: ScfSyncInvokeFunctionConfig); private _event?; get event(): string; set event(value: string); resetEvent(): void; get eventInput(): string; private _functionName?; get functionName(): string; set functionName(value: string); get functionNameInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _logType?; get logType(): string; set logType(value: string); resetLogType(): void; get logTypeInput(): string; private _namespace?; get namespace(): string; set namespace(value: string); resetNamespace(): void; get namespaceInput(): string; private _qualifier?; get qualifier(): string; set qualifier(value: string); resetQualifier(): void; get qualifierInput(): string; private _routingKey?; get routingKey(): string; set routingKey(value: string); resetRoutingKey(): void; get routingKeyInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }