import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CamMessageReceiverConfig extends cdktf.TerraformMetaArguments { /** * The international area code for mobile phone numbers is 86 for domestic areas. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_message_receiver#country_code CamMessageReceiver#country_code} */ readonly countryCode: string; /** * Email address, for example: 57*****@qq.com. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_message_receiver#email CamMessageReceiver#email} */ readonly email: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_message_receiver#id CamMessageReceiver#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; /** * Username of the message recipient. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_message_receiver#name CamMessageReceiver#name} */ readonly name: string; /** * Mobile phone number, for example: 132****2492. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_message_receiver#phone_number CamMessageReceiver#phone_number} */ readonly phoneNumber: string; /** * Recipient's notes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_message_receiver#remark CamMessageReceiver#remark} */ readonly remark?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_message_receiver tencentcloud_cam_message_receiver} */ export declare class CamMessageReceiver extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cam_message_receiver"; /** * Generates CDKTF code for importing a CamMessageReceiver 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 CamMessageReceiver to import * @param importFromId The id of the existing CamMessageReceiver that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cam_message_receiver#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CamMessageReceiver 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/cam_message_receiver tencentcloud_cam_message_receiver} 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 CamMessageReceiverConfig */ constructor(scope: Construct, id: string, config: CamMessageReceiverConfig); private _countryCode?; get countryCode(): string; set countryCode(value: string); get countryCodeInput(): string; private _email?; get email(): string; set email(value: string); get emailInput(): string; get emailFlag(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get isReceiverOwner(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; get phoneFlag(): any; private _phoneNumber?; get phoneNumber(): string; set phoneNumber(value: string); get phoneNumberInput(): string; private _remark?; get remark(): string; set remark(value: string); resetRemark(): void; get remarkInput(): string; get uid(): any; get uin(): any; get wechatFlag(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }