import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface MqttJwksAuthenticatorConfig extends cdktf.TerraformMetaArguments { /** * JWKS endpoint. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwks_authenticator#endpoint MqttJwksAuthenticator#endpoint} */ readonly endpoint?: 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_jwks_authenticator#from MqttJwksAuthenticator#from} */ readonly from?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwks_authenticator#id MqttJwksAuthenticator#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_jwks_authenticator#instance_id MqttJwksAuthenticator#instance_id} */ readonly instanceId: string; /** * JWKS refresh interval. unit: s. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwks_authenticator#refresh_interval MqttJwksAuthenticator#refresh_interval} */ readonly refreshInterval?: number; /** * Remark. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwks_authenticator#remark MqttJwksAuthenticator#remark} */ readonly remark?: string; /** * JWKS text. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwks_authenticator#text MqttJwksAuthenticator#text} */ readonly text?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwks_authenticator tencentcloud_mqtt_jwks_authenticator} */ export declare class MqttJwksAuthenticator extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_mqtt_jwks_authenticator"; /** * Generates CDKTF code for importing a MqttJwksAuthenticator 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 MqttJwksAuthenticator to import * @param importFromId The id of the existing MqttJwksAuthenticator that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/mqtt_jwks_authenticator#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the MqttJwksAuthenticator 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_jwks_authenticator tencentcloud_mqtt_jwks_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 MqttJwksAuthenticatorConfig */ constructor(scope: Construct, id: string, config: MqttJwksAuthenticatorConfig); private _endpoint?; get endpoint(): string; set endpoint(value: string); resetEndpoint(): void; get endpointInput(): string; private _from?; get from(): string; set from(value: string); resetFrom(): void; 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 _refreshInterval?; get refreshInterval(): number; set refreshInterval(value: number); resetRefreshInterval(): void; get refreshIntervalInput(): number; private _remark?; get remark(): string; set remark(value: string); resetRemark(): void; get remarkInput(): string; private _text?; get text(): string; set text(value: string); resetText(): void; get textInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }