import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ScfTriggerConfigConfig extends cdktf.TerraformMetaArguments { /** * User Additional Information. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config#custom_argument ScfTriggerConfig#custom_argument} */ readonly customArgument?: string; /** * Trigger description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config#description ScfTriggerConfig#description} */ readonly description?: string; /** * Status of trigger. Values: OPEN (enabled); CLOSE disabled). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config#enable ScfTriggerConfig#enable} */ readonly enable?: string; /** * Function name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config#function_name ScfTriggerConfig#function_name} */ readonly functionName: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config#id ScfTriggerConfig#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; /** * Function namespace. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config#namespace ScfTriggerConfig#namespace} */ readonly namespace?: string; /** * Function version. It defaults to `$LATEST`. It's recommended to use `[$DEFAULT](https://intl.cloud.tencent.com/document/product/583/36149?from_cn_redirect=1#.E9.BB.98.E8.AE.A4.E5.88.AB.E5.90.8D)` for canary release. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config#qualifier ScfTriggerConfig#qualifier} */ readonly qualifier?: string; /** * TriggerDesc parameter. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config#trigger_desc ScfTriggerConfig#trigger_desc} */ readonly triggerDesc?: string; /** * Trigger Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config#trigger_name ScfTriggerConfig#trigger_name} */ readonly triggerName: string; /** * Trigger type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config#type ScfTriggerConfig#type} */ readonly type: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config tencentcloud_scf_trigger_config} */ export declare class ScfTriggerConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_scf_trigger_config"; /** * Generates CDKTF code for importing a ScfTriggerConfig 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 ScfTriggerConfig to import * @param importFromId The id of the existing ScfTriggerConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/scf_trigger_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ScfTriggerConfig 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_trigger_config tencentcloud_scf_trigger_config} 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 ScfTriggerConfigConfig */ constructor(scope: Construct, id: string, config: ScfTriggerConfigConfig); private _customArgument?; get customArgument(): string; set customArgument(value: string); resetCustomArgument(): void; get customArgumentInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _enable?; get enable(): string; set enable(value: string); resetEnable(): void; get enableInput(): 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 _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 _triggerDesc?; get triggerDesc(): string; set triggerDesc(value: string); resetTriggerDesc(): void; get triggerDescInput(): string; private _triggerName?; get triggerName(): string; set triggerName(value: string); get triggerNameInput(): string; private _type?; get type(): string; set type(value: string); get typeInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }