import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CiMediaSmartCoverTemplateConfig extends cdktf.TerraformMetaArguments { /** * bucket name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_smart_cover_template#bucket CiMediaSmartCoverTemplate#bucket} */ readonly bucket: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_smart_cover_template#id CiMediaSmartCoverTemplate#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; /** * The template name only supports `Chinese`, `English`, `numbers`, `_`, `-` and `*`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_smart_cover_template#name CiMediaSmartCoverTemplate#name} */ readonly name: string; /** * smart_cover block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_smart_cover_template#smart_cover CiMediaSmartCoverTemplate#smart_cover} */ readonly smartCover: CiMediaSmartCoverTemplateSmartCover; } export interface CiMediaSmartCoverTemplateSmartCover { /** * Number of screenshots, [1,10]. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_smart_cover_template#count CiMediaSmartCoverTemplate#count} */ readonly count?: string; /** * cover deduplication, true/false. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_smart_cover_template#delete_duplicates CiMediaSmartCoverTemplate#delete_duplicates} */ readonly deleteDuplicates?: string; /** * Image Format, value jpg, png, webp. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_smart_cover_template#format CiMediaSmartCoverTemplate#format} */ readonly format: string; /** * Height, value range: [128, 4096], unit: px, if only Height is set, Width is calculated according to the original video ratio. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_smart_cover_template#height CiMediaSmartCoverTemplate#height} */ readonly height?: string; /** * Width, value range: [128, 4096], unit: px, if only Width is set, Height is calculated according to the original ratio of the video. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_smart_cover_template#width CiMediaSmartCoverTemplate#width} */ readonly width?: string; } export declare function ciMediaSmartCoverTemplateSmartCoverToTerraform(struct?: CiMediaSmartCoverTemplateSmartCoverOutputReference | CiMediaSmartCoverTemplateSmartCover): any; export declare function ciMediaSmartCoverTemplateSmartCoverToHclTerraform(struct?: CiMediaSmartCoverTemplateSmartCoverOutputReference | CiMediaSmartCoverTemplateSmartCover): any; export declare class CiMediaSmartCoverTemplateSmartCoverOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): CiMediaSmartCoverTemplateSmartCover | undefined; set internalValue(value: CiMediaSmartCoverTemplateSmartCover | undefined); private _count?; get count(): string; set count(value: string); resetCount(): void; get countInput(): string; private _deleteDuplicates?; get deleteDuplicates(): string; set deleteDuplicates(value: string); resetDeleteDuplicates(): void; get deleteDuplicatesInput(): string; private _format?; get format(): string; set format(value: string); get formatInput(): string; private _height?; get height(): string; set height(value: string); resetHeight(): void; get heightInput(): string; private _width?; get width(): string; set width(value: string); resetWidth(): void; get widthInput(): string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_smart_cover_template tencentcloud_ci_media_smart_cover_template} */ export declare class CiMediaSmartCoverTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_ci_media_smart_cover_template"; /** * Generates CDKTF code for importing a CiMediaSmartCoverTemplate 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 CiMediaSmartCoverTemplate to import * @param importFromId The id of the existing CiMediaSmartCoverTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_smart_cover_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CiMediaSmartCoverTemplate 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/ci_media_smart_cover_template tencentcloud_ci_media_smart_cover_template} 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 CiMediaSmartCoverTemplateConfig */ constructor(scope: Construct, id: string, config: CiMediaSmartCoverTemplateConfig); private _bucket?; get bucket(): string; set bucket(value: string); get bucketInput(): string; 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 _smartCover; get smartCover(): CiMediaSmartCoverTemplateSmartCoverOutputReference; putSmartCover(value: CiMediaSmartCoverTemplateSmartCover): void; get smartCoverInput(): CiMediaSmartCoverTemplateSmartCover; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }