import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CiMediaAnimationTemplateConfig extends cdktf.TerraformMetaArguments { /** * bucket name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#bucket CiMediaAnimationTemplate#bucket} */ readonly bucket: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#id CiMediaAnimationTemplate#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_animation_template#name CiMediaAnimationTemplate#name} */ readonly name: string; /** * container block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#container CiMediaAnimationTemplate#container} */ readonly container: CiMediaAnimationTemplateContainer; /** * time_interval block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#time_interval CiMediaAnimationTemplate#time_interval} */ readonly timeInterval?: CiMediaAnimationTemplateTimeInterval; /** * video block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#video CiMediaAnimationTemplate#video} */ readonly video?: CiMediaAnimationTemplateVideo; } export interface CiMediaAnimationTemplateContainer { /** * Package format. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#format CiMediaAnimationTemplate#format} */ readonly format: string; } export declare function ciMediaAnimationTemplateContainerToTerraform(struct?: CiMediaAnimationTemplateContainerOutputReference | CiMediaAnimationTemplateContainer): any; export declare function ciMediaAnimationTemplateContainerToHclTerraform(struct?: CiMediaAnimationTemplateContainerOutputReference | CiMediaAnimationTemplateContainer): any; export declare class CiMediaAnimationTemplateContainerOutputReference 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(): CiMediaAnimationTemplateContainer | undefined; set internalValue(value: CiMediaAnimationTemplateContainer | undefined); private _format?; get format(): string; set format(value: string); get formatInput(): string; } export interface CiMediaAnimationTemplateTimeInterval { /** * duration, [0 video duration], in seconds, Support float format, the execution accuracy is accurate to milliseconds. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#duration CiMediaAnimationTemplate#duration} */ readonly duration?: string; /** * Starting time, [0 video duration], in seconds, Support float format, the execution accuracy is accurate to milliseconds. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#start CiMediaAnimationTemplate#start} */ readonly start?: string; } export declare function ciMediaAnimationTemplateTimeIntervalToTerraform(struct?: CiMediaAnimationTemplateTimeIntervalOutputReference | CiMediaAnimationTemplateTimeInterval): any; export declare function ciMediaAnimationTemplateTimeIntervalToHclTerraform(struct?: CiMediaAnimationTemplateTimeIntervalOutputReference | CiMediaAnimationTemplateTimeInterval): any; export declare class CiMediaAnimationTemplateTimeIntervalOutputReference 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(): CiMediaAnimationTemplateTimeInterval | undefined; set internalValue(value: CiMediaAnimationTemplateTimeInterval | undefined); private _duration?; get duration(): string; set duration(value: string); resetDuration(): void; get durationInput(): string; private _start?; get start(): string; set start(value: string); resetStart(): void; get startInput(): string; } export interface CiMediaAnimationTemplateVideo { /** * Animation per second frame number, Priority: AnimateFramesPerSecond > AnimateOnlyKeepKeyFrame > AnimateTimeIntervalOfFrame. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#animate_frames_per_second CiMediaAnimationTemplate#animate_frames_per_second} */ readonly animateFramesPerSecond?: string; /** * GIFs are kept only Keyframe, Priority: AnimateFramesPerSecond > AnimateOnlyKeepKeyFrame > AnimateTimeIntervalOfFrame. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#animate_only_keep_key_frame CiMediaAnimationTemplate#animate_only_keep_key_frame} */ readonly animateOnlyKeepKeyFrame?: string; /** * Animation frame extraction every time, (0, video duration], Animation frame extraction time interval, If TimeInterval.Duration is set, it is less than this value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#animate_time_interval_of_frame CiMediaAnimationTemplate#animate_time_interval_of_frame} */ readonly animateTimeIntervalOfFrame?: string; /** * Codec format `gif`, `webp`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#codec CiMediaAnimationTemplate#codec} */ readonly codec: string; /** * Frame rate, value range: (0, 60], Unit: fps. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#fps CiMediaAnimationTemplate#fps} */ readonly fps?: string; /** * High, value range: [128, 4096], Unit: px, If only Height is set, Width is calculated according to the original ratio of the video, must be even. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#height CiMediaAnimationTemplate#height} */ readonly height?: string; /** * Set relative quality, [1, 100), webp image quality setting takes effect, gif has no quality parameter. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#quality CiMediaAnimationTemplate#quality} */ readonly quality?: string; /** * width, value range: [128, 4096], Unit: px, If only Width is set, Height is calculated according to the original ratio of the video, must be even. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#width CiMediaAnimationTemplate#width} */ readonly width?: string; } export declare function ciMediaAnimationTemplateVideoToTerraform(struct?: CiMediaAnimationTemplateVideoOutputReference | CiMediaAnimationTemplateVideo): any; export declare function ciMediaAnimationTemplateVideoToHclTerraform(struct?: CiMediaAnimationTemplateVideoOutputReference | CiMediaAnimationTemplateVideo): any; export declare class CiMediaAnimationTemplateVideoOutputReference 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(): CiMediaAnimationTemplateVideo | undefined; set internalValue(value: CiMediaAnimationTemplateVideo | undefined); private _animateFramesPerSecond?; get animateFramesPerSecond(): string; set animateFramesPerSecond(value: string); resetAnimateFramesPerSecond(): void; get animateFramesPerSecondInput(): string; private _animateOnlyKeepKeyFrame?; get animateOnlyKeepKeyFrame(): string; set animateOnlyKeepKeyFrame(value: string); resetAnimateOnlyKeepKeyFrame(): void; get animateOnlyKeepKeyFrameInput(): string; private _animateTimeIntervalOfFrame?; get animateTimeIntervalOfFrame(): string; set animateTimeIntervalOfFrame(value: string); resetAnimateTimeIntervalOfFrame(): void; get animateTimeIntervalOfFrameInput(): string; private _codec?; get codec(): string; set codec(value: string); get codecInput(): string; private _fps?; get fps(): string; set fps(value: string); resetFps(): void; get fpsInput(): string; private _height?; get height(): string; set height(value: string); resetHeight(): void; get heightInput(): string; private _quality?; get quality(): string; set quality(value: string); resetQuality(): void; get qualityInput(): 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_animation_template tencentcloud_ci_media_animation_template} */ export declare class CiMediaAnimationTemplate extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_ci_media_animation_template"; /** * Generates CDKTF code for importing a CiMediaAnimationTemplate 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 CiMediaAnimationTemplate to import * @param importFromId The id of the existing CiMediaAnimationTemplate that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ci_media_animation_template#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CiMediaAnimationTemplate 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_animation_template tencentcloud_ci_media_animation_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 CiMediaAnimationTemplateConfig */ constructor(scope: Construct, id: string, config: CiMediaAnimationTemplateConfig); 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 _container; get container(): CiMediaAnimationTemplateContainerOutputReference; putContainer(value: CiMediaAnimationTemplateContainer): void; get containerInput(): CiMediaAnimationTemplateContainer; private _timeInterval; get timeInterval(): CiMediaAnimationTemplateTimeIntervalOutputReference; putTimeInterval(value: CiMediaAnimationTemplateTimeInterval): void; resetTimeInterval(): void; get timeIntervalInput(): CiMediaAnimationTemplateTimeInterval; private _video; get video(): CiMediaAnimationTemplateVideoOutputReference; putVideo(value: CiMediaAnimationTemplateVideo): void; resetVideo(): void; get videoInput(): CiMediaAnimationTemplateVideo; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }