import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TdmqRabbitmqUserConfig extends cdktf.TerraformMetaArguments { /** * Describe. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rabbitmq_user#description TdmqRabbitmqUser#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rabbitmq_user#id TdmqRabbitmqUser#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; /** * Cluster instance ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rabbitmq_user#instance_id TdmqRabbitmqUser#instance_id} */ readonly instanceId: string; /** * The maximum number of channels for this user, if not filled in, there is no limit. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rabbitmq_user#max_channels TdmqRabbitmqUser#max_channels} */ readonly maxChannels?: number; /** * The maximum number of connections for this user, if not filled in, there is no limit. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rabbitmq_user#max_connections TdmqRabbitmqUser#max_connections} */ readonly maxConnections?: number; /** * Password, used when logging in. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rabbitmq_user#password TdmqRabbitmqUser#password} */ readonly password: string; /** * User tag, used to determine the permission range for changing user access to RabbitMQ Management. Management: regular console user, monitoring: management console user, other values: non console user. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rabbitmq_user#tags TdmqRabbitmqUser#tags} */ readonly tags?: string[]; /** * Username, used when logging in. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rabbitmq_user#user TdmqRabbitmqUser#user} */ readonly user: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rabbitmq_user tencentcloud_tdmq_rabbitmq_user} */ export declare class TdmqRabbitmqUser extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tdmq_rabbitmq_user"; /** * Generates CDKTF code for importing a TdmqRabbitmqUser 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 TdmqRabbitmqUser to import * @param importFromId The id of the existing TdmqRabbitmqUser that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rabbitmq_user#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TdmqRabbitmqUser 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/tdmq_rabbitmq_user tencentcloud_tdmq_rabbitmq_user} 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 TdmqRabbitmqUserConfig */ constructor(scope: Construct, id: string, config: TdmqRabbitmqUserConfig); private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): 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 _maxChannels?; get maxChannels(): number; set maxChannels(value: number); resetMaxChannels(): void; get maxChannelsInput(): number; private _maxConnections?; get maxConnections(): number; set maxConnections(value: number); resetMaxConnections(): void; get maxConnectionsInput(): number; private _password?; get password(): string; set password(value: string); get passwordInput(): string; private _tags?; get tags(): string[]; set tags(value: string[]); resetTags(): void; get tagsInput(): string[]; private _user?; get user(): string; set user(value: string); get userInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }