Struct aws_sdk_backup::operation::put_backup_vault_lock_configuration::PutBackupVaultLockConfigurationInput
source · #[non_exhaustive]pub struct PutBackupVaultLockConfigurationInput {
pub backup_vault_name: Option<String>,
pub min_retention_days: Option<i64>,
pub max_retention_days: Option<i64>,
pub changeable_for_days: Option<i64>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.backup_vault_name: Option<String>
The Backup Vault Lock configuration that specifies the name of the backup vault it protects.
min_retention_days: Option<i64>
The Backup Vault Lock configuration that specifies the minimum retention period that the vault retains its recovery points. This setting can be useful if, for example, your organization's policies require you to retain certain data for at least seven years (2555 days).
If this parameter is not specified, Vault Lock will not enforce a minimum retention period.
If this parameter is specified, any backup or copy job to the vault must have a lifecycle policy with a retention period equal to or longer than the minimum retention period. If the job's retention period is shorter than that minimum retention period, then the vault fails that backup or copy job, and you should either modify your lifecycle settings or use a different vault. The shortest minimum retention period you can specify is 1 day. Recovery points already saved in the vault prior to Vault Lock are not affected.
max_retention_days: Option<i64>
The Backup Vault Lock configuration that specifies the maximum retention period that the vault retains its recovery points. This setting can be useful if, for example, your organization's policies require you to destroy certain data after retaining it for four years (1460 days).
If this parameter is not included, Vault Lock does not enforce a maximum retention period on the recovery points in the vault. If this parameter is included without a value, Vault Lock will not enforce a maximum retention period.
If this parameter is specified, any backup or copy job to the vault must have a lifecycle policy with a retention period equal to or shorter than the maximum retention period. If the job's retention period is longer than that maximum retention period, then the vault fails the backup or copy job, and you should either modify your lifecycle settings or use a different vault. The longest maximum retention period you can specify is 36500 days (approximately 100 years). Recovery points already saved in the vault prior to Vault Lock are not affected.
changeable_for_days: Option<i64>
The Backup Vault Lock configuration that specifies the number of days before the lock date. For example, setting ChangeableForDays
to 30 on Jan. 1, 2022 at 8pm UTC will set the lock date to Jan. 31, 2022 at 8pm UTC.
Backup enforces a 72-hour cooling-off period before Vault Lock takes effect and becomes immutable. Therefore, you must set ChangeableForDays
to 3 or greater.
Before the lock date, you can delete Vault Lock from the vault using DeleteBackupVaultLockConfiguration
or change the Vault Lock configuration using PutBackupVaultLockConfiguration
. On and after the lock date, the Vault Lock becomes immutable and cannot be changed or deleted.
If this parameter is not specified, you can delete Vault Lock from the vault using DeleteBackupVaultLockConfiguration
or change the Vault Lock configuration using PutBackupVaultLockConfiguration
at any time.
Implementations§
source§impl PutBackupVaultLockConfigurationInput
impl PutBackupVaultLockConfigurationInput
sourcepub fn backup_vault_name(&self) -> Option<&str>
pub fn backup_vault_name(&self) -> Option<&str>
The Backup Vault Lock configuration that specifies the name of the backup vault it protects.
sourcepub fn min_retention_days(&self) -> Option<i64>
pub fn min_retention_days(&self) -> Option<i64>
The Backup Vault Lock configuration that specifies the minimum retention period that the vault retains its recovery points. This setting can be useful if, for example, your organization's policies require you to retain certain data for at least seven years (2555 days).
If this parameter is not specified, Vault Lock will not enforce a minimum retention period.
If this parameter is specified, any backup or copy job to the vault must have a lifecycle policy with a retention period equal to or longer than the minimum retention period. If the job's retention period is shorter than that minimum retention period, then the vault fails that backup or copy job, and you should either modify your lifecycle settings or use a different vault. The shortest minimum retention period you can specify is 1 day. Recovery points already saved in the vault prior to Vault Lock are not affected.
sourcepub fn max_retention_days(&self) -> Option<i64>
pub fn max_retention_days(&self) -> Option<i64>
The Backup Vault Lock configuration that specifies the maximum retention period that the vault retains its recovery points. This setting can be useful if, for example, your organization's policies require you to destroy certain data after retaining it for four years (1460 days).
If this parameter is not included, Vault Lock does not enforce a maximum retention period on the recovery points in the vault. If this parameter is included without a value, Vault Lock will not enforce a maximum retention period.
If this parameter is specified, any backup or copy job to the vault must have a lifecycle policy with a retention period equal to or shorter than the maximum retention period. If the job's retention period is longer than that maximum retention period, then the vault fails the backup or copy job, and you should either modify your lifecycle settings or use a different vault. The longest maximum retention period you can specify is 36500 days (approximately 100 years). Recovery points already saved in the vault prior to Vault Lock are not affected.
sourcepub fn changeable_for_days(&self) -> Option<i64>
pub fn changeable_for_days(&self) -> Option<i64>
The Backup Vault Lock configuration that specifies the number of days before the lock date. For example, setting ChangeableForDays
to 30 on Jan. 1, 2022 at 8pm UTC will set the lock date to Jan. 31, 2022 at 8pm UTC.
Backup enforces a 72-hour cooling-off period before Vault Lock takes effect and becomes immutable. Therefore, you must set ChangeableForDays
to 3 or greater.
Before the lock date, you can delete Vault Lock from the vault using DeleteBackupVaultLockConfiguration
or change the Vault Lock configuration using PutBackupVaultLockConfiguration
. On and after the lock date, the Vault Lock becomes immutable and cannot be changed or deleted.
If this parameter is not specified, you can delete Vault Lock from the vault using DeleteBackupVaultLockConfiguration
or change the Vault Lock configuration using PutBackupVaultLockConfiguration
at any time.
source§impl PutBackupVaultLockConfigurationInput
impl PutBackupVaultLockConfigurationInput
sourcepub fn builder() -> PutBackupVaultLockConfigurationInputBuilder
pub fn builder() -> PutBackupVaultLockConfigurationInputBuilder
Creates a new builder-style object to manufacture PutBackupVaultLockConfigurationInput
.
Trait Implementations§
source§impl Clone for PutBackupVaultLockConfigurationInput
impl Clone for PutBackupVaultLockConfigurationInput
source§fn clone(&self) -> PutBackupVaultLockConfigurationInput
fn clone(&self) -> PutBackupVaultLockConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for PutBackupVaultLockConfigurationInput
impl PartialEq for PutBackupVaultLockConfigurationInput
source§fn eq(&self, other: &PutBackupVaultLockConfigurationInput) -> bool
fn eq(&self, other: &PutBackupVaultLockConfigurationInput) -> bool
self
and other
values to be equal, and is used
by ==
.