import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface RedisBackupConfigConfig extends cdktf.TerraformMetaArguments { /** * Specifys which day the backup action should take place. Valid values: `Monday`, `Tuesday`, `Wednesday`, `Thursday`, `Friday`, `Saturday` and `Sunday`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/redis_backup_config#backup_period RedisBackupConfig#backup_period} */ readonly backupPeriod?: string[]; /** * Specifys what time the backup action should take place. And the time interval should be one hour. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/redis_backup_config#backup_time RedisBackupConfig#backup_time} */ readonly backupTime: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/redis_backup_config#id RedisBackupConfig#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; /** * ID of a redis instance to which the policy will be applied. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/redis_backup_config#redis_id RedisBackupConfig#redis_id} */ readonly redisId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/redis_backup_config tencentcloud_redis_backup_config} */ export declare class RedisBackupConfig extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_redis_backup_config"; /** * Generates CDKTF code for importing a RedisBackupConfig 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 RedisBackupConfig to import * @param importFromId The id of the existing RedisBackupConfig that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/redis_backup_config#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the RedisBackupConfig 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/redis_backup_config tencentcloud_redis_backup_config} 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 RedisBackupConfigConfig */ constructor(scope: Construct, id: string, config: RedisBackupConfigConfig); private _backupPeriod?; get backupPeriod(): string[]; set backupPeriod(value: string[]); resetBackupPeriod(): void; get backupPeriodInput(): string[]; private _backupTime?; get backupTime(): string; set backupTime(value: string); get backupTimeInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _redisId?; get redisId(): string; set redisId(value: string); get redisIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }