import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CssWatermarkConfig extends cdktf.TerraformMetaArguments { /** * height of the picture. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_watermark#height CssWatermark#height} */ readonly height?: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_watermark#id CssWatermark#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; /** * watermark url. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_watermark#picture_url CssWatermark#picture_url} */ readonly pictureUrl: string; /** * watermark name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_watermark#watermark_name CssWatermark#watermark_name} */ readonly watermarkName: string; /** * width of the picture. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_watermark#width CssWatermark#width} */ readonly width?: number; /** * x position of the picture. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_watermark#x_position CssWatermark#x_position} */ readonly xPosition?: number; /** * y position of the picture. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_watermark#y_position CssWatermark#y_position} */ readonly yPosition?: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_watermark tencentcloud_css_watermark} */ export declare class CssWatermark extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_css_watermark"; /** * Generates CDKTF code for importing a CssWatermark 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 CssWatermark to import * @param importFromId The id of the existing CssWatermark that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/css_watermark#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CssWatermark 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/css_watermark tencentcloud_css_watermark} 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 CssWatermarkConfig */ constructor(scope: Construct, id: string, config: CssWatermarkConfig); private _height?; get height(): number; set height(value: number); resetHeight(): void; get heightInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _pictureUrl?; get pictureUrl(): string; set pictureUrl(value: string); get pictureUrlInput(): string; get status(): any; private _watermarkName?; get watermarkName(): string; set watermarkName(value: string); get watermarkNameInput(): string; private _width?; get width(): number; set width(value: number); resetWidth(): void; get widthInput(): number; private _xPosition?; get xPosition(): number; set xPosition(value: number); resetXPosition(): void; get xPositionInput(): number; private _yPosition?; get yPosition(): number; set yPosition(value: number); resetYPosition(): void; get yPositionInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }