import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CfsAutoSnapshotPolicyConfig extends cdktf.TerraformMetaArguments { /** * Snapshot retention period. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfs_auto_snapshot_policy#alive_days CfsAutoSnapshotPolicy#alive_days} */ readonly aliveDays?: number; /** * The specific day (day 1 to day 31) of the month on which to create a snapshot. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfs_auto_snapshot_policy#day_of_month CfsAutoSnapshotPolicy#day_of_month} */ readonly dayOfMonth?: string; /** * The day of the week on which to repeat the snapshot operation. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfs_auto_snapshot_policy#day_of_week CfsAutoSnapshotPolicy#day_of_week} */ readonly dayOfWeek?: string; /** * The time point when to repeat the snapshot operation. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfs_auto_snapshot_policy#hour CfsAutoSnapshotPolicy#hour} */ readonly hour: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfs_auto_snapshot_policy#id CfsAutoSnapshotPolicy#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 snapshot interval, in days. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfs_auto_snapshot_policy#interval_days CfsAutoSnapshotPolicy#interval_days} */ readonly intervalDays?: number; /** * Policy name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfs_auto_snapshot_policy#policy_name CfsAutoSnapshotPolicy#policy_name} */ readonly policyName?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfs_auto_snapshot_policy tencentcloud_cfs_auto_snapshot_policy} */ export declare class CfsAutoSnapshotPolicy extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cfs_auto_snapshot_policy"; /** * Generates CDKTF code for importing a CfsAutoSnapshotPolicy 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 CfsAutoSnapshotPolicy to import * @param importFromId The id of the existing CfsAutoSnapshotPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cfs_auto_snapshot_policy#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CfsAutoSnapshotPolicy 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/cfs_auto_snapshot_policy tencentcloud_cfs_auto_snapshot_policy} 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 CfsAutoSnapshotPolicyConfig */ constructor(scope: Construct, id: string, config: CfsAutoSnapshotPolicyConfig); private _aliveDays?; get aliveDays(): number; set aliveDays(value: number); resetAliveDays(): void; get aliveDaysInput(): number; private _dayOfMonth?; get dayOfMonth(): string; set dayOfMonth(value: string); resetDayOfMonth(): void; get dayOfMonthInput(): string; private _dayOfWeek?; get dayOfWeek(): string; set dayOfWeek(value: string); resetDayOfWeek(): void; get dayOfWeekInput(): string; private _hour?; get hour(): string; set hour(value: string); get hourInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _intervalDays?; get intervalDays(): number; set intervalDays(value: number); resetIntervalDays(): void; get intervalDaysInput(): number; private _policyName?; get policyName(): string; set policyName(value: string); resetPolicyName(): void; get policyNameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }