import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TdmqNamespaceRoleAttachmentConfig extends cdktf.TerraformMetaArguments { /** * The id of tdmq cluster. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_namespace_role_attachment#cluster_id TdmqNamespaceRoleAttachment#cluster_id} */ readonly clusterId: string; /** * The name of tdmq namespace. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_namespace_role_attachment#environ_id TdmqNamespaceRoleAttachment#environ_id} */ readonly environId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_namespace_role_attachment#id TdmqNamespaceRoleAttachment#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; /** * The permissions of tdmq role. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_namespace_role_attachment#permissions TdmqNamespaceRoleAttachment#permissions} */ readonly permissions: string[]; /** * The name of tdmq role. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_namespace_role_attachment#role_name TdmqNamespaceRoleAttachment#role_name} */ readonly roleName: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_namespace_role_attachment tencentcloud_tdmq_namespace_role_attachment} */ export declare class TdmqNamespaceRoleAttachment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tdmq_namespace_role_attachment"; /** * Generates CDKTF code for importing a TdmqNamespaceRoleAttachment 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 TdmqNamespaceRoleAttachment to import * @param importFromId The id of the existing TdmqNamespaceRoleAttachment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_namespace_role_attachment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TdmqNamespaceRoleAttachment 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_namespace_role_attachment tencentcloud_tdmq_namespace_role_attachment} 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 TdmqNamespaceRoleAttachmentConfig */ constructor(scope: Construct, id: string, config: TdmqNamespaceRoleAttachmentConfig); private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; get createTime(): any; private _environId?; get environId(): string; set environId(value: string); get environIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _permissions?; get permissions(): string[]; set permissions(value: string[]); get permissionsInput(): string[]; private _roleName?; get roleName(): string; set roleName(value: string); get roleNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }