import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CkafkaDatahubTopicConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ckafka_datahub_topic#id CkafkaDatahubTopic#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; /** * Name, start with appid, which is a string of no more than 128 characters, must start with a letter, and the rest can contain letters, numbers, and dashes (-). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ckafka_datahub_topic#name CkafkaDatahubTopic#name} */ readonly name: string; /** * Subject note, which is a string of no more than 64 characters, must start with a letter, and the rest can contain letters, numbers and dashes (-). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ckafka_datahub_topic#note CkafkaDatahubTopic#note} */ readonly note?: string; /** * Number of Partitions, greater than 0. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ckafka_datahub_topic#partition_num CkafkaDatahubTopic#partition_num} */ readonly partitionNum: number; /** * Message retention time, in ms, the current minimum value is 60000 ms. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ckafka_datahub_topic#retention_ms CkafkaDatahubTopic#retention_ms} */ readonly retentionMs: number; /** * Tags of dataHub topic. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ckafka_datahub_topic#tags CkafkaDatahubTopic#tags} */ readonly tags?: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ckafka_datahub_topic tencentcloud_ckafka_datahub_topic} */ export declare class CkafkaDatahubTopic extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_ckafka_datahub_topic"; /** * Generates CDKTF code for importing a CkafkaDatahubTopic 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 CkafkaDatahubTopic to import * @param importFromId The id of the existing CkafkaDatahubTopic that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ckafka_datahub_topic#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CkafkaDatahubTopic 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/ckafka_datahub_topic tencentcloud_ckafka_datahub_topic} 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 CkafkaDatahubTopicConfig */ constructor(scope: Construct, id: string, config: CkafkaDatahubTopicConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _note?; get note(): string; set note(value: string); resetNote(): void; get noteInput(): string; private _partitionNum?; get partitionNum(): number; set partitionNum(value: number); get partitionNumInput(): number; private _retentionMs?; get retentionMs(): number; set retentionMs(value: number); get retentionMsInput(): number; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; }; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }