#[non_exhaustive]pub struct ListRecoveryPointsByBackupVaultInput { /* private fields */ }
Implementations
sourceimpl ListRecoveryPointsByBackupVaultInput
impl ListRecoveryPointsByBackupVaultInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListRecoveryPointsByBackupVault, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListRecoveryPointsByBackupVault, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListRecoveryPointsByBackupVault
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListRecoveryPointsByBackupVaultInput
.
sourceimpl ListRecoveryPointsByBackupVaultInput
impl ListRecoveryPointsByBackupVaultInput
sourcepub fn backup_vault_name(&self) -> Option<&str>
pub fn backup_vault_name(&self) -> Option<&str>
The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Amazon Web Services Region where they are created. They consist of lowercase letters, numbers, and hyphens.
Backup vault name might not be available when a supported service creates the backup.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The next item following a partial list of returned items. For example, if a request is made to return maxResults
number of items, NextToken
allows you to return more items in your list starting at the location pointed to by the next token.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to be returned.
sourcepub fn by_resource_arn(&self) -> Option<&str>
pub fn by_resource_arn(&self) -> Option<&str>
Returns only recovery points that match the specified resource Amazon Resource Name (ARN).
sourcepub fn by_resource_type(&self) -> Option<&str>
pub fn by_resource_type(&self) -> Option<&str>
Returns only recovery points that match the specified resource type.
sourcepub fn by_backup_plan_id(&self) -> Option<&str>
pub fn by_backup_plan_id(&self) -> Option<&str>
Returns only recovery points that match the specified backup plan ID.
sourcepub fn by_created_before(&self) -> Option<&DateTime>
pub fn by_created_before(&self) -> Option<&DateTime>
Returns only recovery points that were created before the specified timestamp.
sourcepub fn by_created_after(&self) -> Option<&DateTime>
pub fn by_created_after(&self) -> Option<&DateTime>
Returns only recovery points that were created after the specified timestamp.
Trait Implementations
sourceimpl Clone for ListRecoveryPointsByBackupVaultInput
impl Clone for ListRecoveryPointsByBackupVaultInput
sourcefn clone(&self) -> ListRecoveryPointsByBackupVaultInput
fn clone(&self) -> ListRecoveryPointsByBackupVaultInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more