Struct aws_sdk_backup::types::RecoveryPointSelection
source · #[non_exhaustive]pub struct RecoveryPointSelection { /* private fields */ }
Expand description
This specifies criteria to assign a set of resources, such as resource types or backup vaults.
Implementations§
source§impl RecoveryPointSelection
impl RecoveryPointSelection
sourcepub fn vault_names(&self) -> Option<&[String]>
pub fn vault_names(&self) -> Option<&[String]>
These are the names of the vaults in which the selected recovery points are contained.
sourcepub fn resource_identifiers(&self) -> Option<&[String]>
pub fn resource_identifiers(&self) -> Option<&[String]>
These are the resources included in the resource selection (including type of resources and vaults).
sourcepub fn date_range(&self) -> Option<&DateRange>
pub fn date_range(&self) -> Option<&DateRange>
This is a resource filter containing FromDate: DateTime and ToDate: DateTime. Both values are required. Future DateTime values are not permitted.
The date and time are in Unix format and Coordinated Universal Time (UTC), and it is accurate to milliseconds ((milliseconds are optional). For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
source§impl RecoveryPointSelection
impl RecoveryPointSelection
sourcepub fn builder() -> RecoveryPointSelectionBuilder
pub fn builder() -> RecoveryPointSelectionBuilder
Creates a new builder-style object to manufacture RecoveryPointSelection
.
Trait Implementations§
source§impl Clone for RecoveryPointSelection
impl Clone for RecoveryPointSelection
source§fn clone(&self) -> RecoveryPointSelection
fn clone(&self) -> RecoveryPointSelection
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RecoveryPointSelection
impl Debug for RecoveryPointSelection
source§impl PartialEq<RecoveryPointSelection> for RecoveryPointSelection
impl PartialEq<RecoveryPointSelection> for RecoveryPointSelection
source§fn eq(&self, other: &RecoveryPointSelection) -> bool
fn eq(&self, other: &RecoveryPointSelection) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.