import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface SesReceiverConfig extends cdktf.TerraformMetaArguments { /** * Recipient group description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ses_receiver#desc SesReceiver#desc} */ readonly desc?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ses_receiver#id SesReceiver#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; /** * Recipient group name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ses_receiver#receivers_name SesReceiver#receivers_name} */ readonly receiversName: string; /** * data block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ses_receiver#data SesReceiver#data} */ readonly data: SesReceiverData[] | cdktf.IResolvable; } export interface SesReceiverData { /** * Recipient email addresses. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ses_receiver#email SesReceiver#email} */ readonly email: string; /** * Variable parameters in the template, please use json.dump to format the JSON object as a string type. The object is a set of key-value pairs, where each key represents a variable in the template, and the variables in the template are represented by {{key}}, and the corresponding values will be replaced with {{value}} when sent.Note: Parameter values cannot be complex data such as HTML. The total length of TemplateData (the entire JSON structure) should be less than 800 bytes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ses_receiver#template_data SesReceiver#template_data} */ readonly templateData?: string; } export declare function sesReceiverDataToTerraform(struct?: SesReceiverData | cdktf.IResolvable): any; export declare function sesReceiverDataToHclTerraform(struct?: SesReceiverData | cdktf.IResolvable): any; export declare class SesReceiverDataOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): SesReceiverData | cdktf.IResolvable | undefined; set internalValue(value: SesReceiverData | cdktf.IResolvable | undefined); private _email?; get email(): string; set email(value: string); get emailInput(): string; private _templateData?; get templateData(): string; set templateData(value: string); resetTemplateData(): void; get templateDataInput(): string; } export declare class SesReceiverDataList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: SesReceiverData[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): SesReceiverDataOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ses_receiver tencentcloud_ses_receiver} */ export declare class SesReceiver extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_ses_receiver"; /** * Generates CDKTF code for importing a SesReceiver 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 SesReceiver to import * @param importFromId The id of the existing SesReceiver that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ses_receiver#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the SesReceiver 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/ses_receiver tencentcloud_ses_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 SesReceiverConfig */ constructor(scope: Construct, id: string, config: SesReceiverConfig); private _desc?; get desc(): string; set desc(value: string); resetDesc(): void; get descInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _receiversName?; get receiversName(): string; set receiversName(value: string); get receiversNameInput(): string; private _data; get data(): SesReceiverDataList; putData(value: SesReceiverData[] | cdktf.IResolvable): void; get dataInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }