import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TdmqSendRocketmqMessageConfig extends cdktf.TerraformMetaArguments { /** * Cluster id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_send_rocketmq_message#cluster_id TdmqSendRocketmqMessage#cluster_id} */ readonly clusterId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_send_rocketmq_message#id TdmqSendRocketmqMessage#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; /** * Information. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_send_rocketmq_message#msg_body TdmqSendRocketmqMessage#msg_body} */ readonly msgBody: string; /** * Message key information. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_send_rocketmq_message#msg_key TdmqSendRocketmqMessage#msg_key} */ readonly msgKey?: string; /** * Message tag information. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_send_rocketmq_message#msg_tag TdmqSendRocketmqMessage#msg_tag} */ readonly msgTag?: string; /** * Namespaces. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_send_rocketmq_message#namespace_id TdmqSendRocketmqMessage#namespace_id} */ readonly namespaceId: string; /** * topic name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_send_rocketmq_message#topic_name TdmqSendRocketmqMessage#topic_name} */ readonly topicName: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_send_rocketmq_message tencentcloud_tdmq_send_rocketmq_message} */ export declare class TdmqSendRocketmqMessage extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_tdmq_send_rocketmq_message"; /** * Generates CDKTF code for importing a TdmqSendRocketmqMessage 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 TdmqSendRocketmqMessage to import * @param importFromId The id of the existing TdmqSendRocketmqMessage that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/tdmq_send_rocketmq_message#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TdmqSendRocketmqMessage 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_send_rocketmq_message tencentcloud_tdmq_send_rocketmq_message} 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 TdmqSendRocketmqMessageConfig */ constructor(scope: Construct, id: string, config: TdmqSendRocketmqMessageConfig); 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 _msgBody?; get msgBody(): string; set msgBody(value: string); get msgBodyInput(): string; private _msgKey?; get msgKey(): string; set msgKey(value: string); resetMsgKey(): void; get msgKeyInput(): string; private _msgTag?; get msgTag(): string; set msgTag(value: string); resetMsgTag(): void; get msgTagInput(): string; private _namespaceId?; get namespaceId(): string; set namespaceId(value: string); get namespaceIdInput(): string; private _topicName?; get topicName(): string; set topicName(value: string); get topicNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }