import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MqttJwtAuthenticatorConfig extends cdktf.TerraformMetaArguments { /** * Algorithm. hmac-based, public-key. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwt_authenticator#algorithm MqttJwtAuthenticator#algorithm} */ readonly algorithm: string; /** * Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwt_authenticator#from MqttJwtAuthenticator#from} */ readonly from: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwt_authenticator#id MqttJwtAuthenticator#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/mqtt_jwt_authenticator#instance_id MqttJwtAuthenticator#instance_id} */ readonly instanceId: string; /** * Public key. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwt_authenticator#public_key MqttJwtAuthenticator#public_key} */ readonly publicKey?: string; /** * Remark. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwt_authenticator#remark MqttJwtAuthenticator#remark} */ readonly remark?: string; /** * Secret. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwt_authenticator#secret MqttJwtAuthenticator#secret} */ readonly secret?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwt_authenticator tencentcloud_mqtt_jwt_authenticator} */ export declare class MqttJwtAuthenticator extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_mqtt_jwt_authenticator"; /** * Generates CDKTF code for importing a MqttJwtAuthenticator 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 MqttJwtAuthenticator to import * @param importFromId The id of the existing MqttJwtAuthenticator that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwt_authenticator#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MqttJwtAuthenticator 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/mqtt_jwt_authenticator tencentcloud_mqtt_jwt_authenticator} 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 MqttJwtAuthenticatorConfig */ constructor(scope: Construct, id: string, config: MqttJwtAuthenticatorConfig); private _algorithm?; get algorithm(): string; set algorithm(value: string); get algorithmInput(): string; private _from?; get from(): string; set from(value: string); get fromInput(): string; 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 _publicKey?; get publicKey(): string; set publicKey(value: string); resetPublicKey(): void; get publicKeyInput(): string; private _remark?; get remark(): string; set remark(value: string); resetRemark(): void; get remarkInput(): string; private _secret?; get secret(): string; set secret(value: string); resetSecret(): void; get secretInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }