import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TdmqRocketmqNamespaceConfig extends cdktf.TerraformMetaArguments { /** * Cluster ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_namespace#cluster_id TdmqRocketmqNamespace#cluster_id} */ readonly clusterId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_namespace#id TdmqRocketmqNamespace#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; /** * Namespace name, which can contain 3-64 letters, digits, hyphens, and underscores. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_namespace#namespace_name TdmqRocketmqNamespace#namespace_name} */ readonly namespaceName: 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_namespace#remark TdmqRocketmqNamespace#remark} */ readonly remark?: string; /** * Retention time of persisted messages in milliseconds. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_namespace#retention_time TdmqRocketmqNamespace#retention_time} */ readonly retentionTime?: number; /** * Retention time of unconsumed messages in milliseconds. Value range: 60 seconds-15 days. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_namespace#ttl TdmqRocketmqNamespace#ttl} */ readonly ttl?: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_namespace tencentcloud_tdmq_rocketmq_namespace} */ export declare class TdmqRocketmqNamespace extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tdmq_rocketmq_namespace"; /** * Generates CDKTF code for importing a TdmqRocketmqNamespace 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 TdmqRocketmqNamespace to import * @param importFromId The id of the existing TdmqRocketmqNamespace that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_rocketmq_namespace#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TdmqRocketmqNamespace 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_namespace tencentcloud_tdmq_rocketmq_namespace} 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 TdmqRocketmqNamespaceConfig */ constructor(scope: Construct, id: string, config: TdmqRocketmqNamespaceConfig); private _clusterId?; get clusterId(): string; set clusterId(value: string); get clusterIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _namespaceName?; get namespaceName(): string; set namespaceName(value: string); get namespaceNameInput(): string; get publicEndpoint(): any; private _remark?; get remark(): string; set remark(value: string); resetRemark(): void; get remarkInput(): string; private _retentionTime?; get retentionTime(): number; set retentionTime(value: number); resetRetentionTime(): void; get retentionTimeInput(): number; private _ttl?; get ttl(): number; set ttl(value: number); resetTtl(): void; get ttlInput(): number; get vpcEndpoint(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }