VolumeSnapshotPolicyWeeklySchedule

data class VolumeSnapshotPolicyWeeklySchedule(val day: String? = null, val hour: Int? = null, val minute: Int? = null, val snapshotsToKeep: Int)

Constructors

Link copied to clipboard
constructor(day: String? = null, hour: Int? = null, minute: Int? = null, snapshotsToKeep: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val day: String? = null

Set the day or days of the week to make a snapshot. Accepts a comma separated days of the week. Defaults to 'Sunday'.

Link copied to clipboard
val hour: Int? = null

Set the hour to create the snapshot (0-23), defaults to midnight (0).

Link copied to clipboard
val minute: Int? = null

Set the minute of the hour to create the snapshot (0-59), defaults to the top of the hour (0).

Link copied to clipboard

The maximum number of snapshots to keep for the weekly schedule.