import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TdmqRocketmqRoleConfig extends cdktf.TerraformMetaArguments { /** * Cluster ID (required). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_role#cluster_id TdmqRocketmqRole#cluster_id} */ readonly clusterId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_role#id TdmqRocketmqRole#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; /** * Remarks (up to 128 characters). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_role#remark TdmqRocketmqRole#remark} */ readonly remark?: string; /** * Role name, which can contain up to 32 letters, digits, hyphens, and underscores. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_role#role_name TdmqRocketmqRole#role_name} */ readonly roleName: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_role tencentcloud_tdmq_rocketmq_role} */ export declare class TdmqRocketmqRole extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tdmq_rocketmq_role"; /** * Generates CDKTF code for importing a TdmqRocketmqRole 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 TdmqRocketmqRole to import * @param importFromId The id of the existing TdmqRocketmqRole that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_role#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TdmqRocketmqRole 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_rocketmq_role tencentcloud_tdmq_rocketmq_role} 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 TdmqRocketmqRoleConfig */ constructor(scope: Construct, id: string, config: TdmqRocketmqRoleConfig); private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; get createTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _remark?; get remark(): string; set remark(value: string); resetRemark(): void; get remarkInput(): string; private _roleName?; get roleName(): string; set roleName(value: string); get roleNameInput(): string; get token(): any; get updateTime(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }