#[non_exhaustive]pub struct ListRecoveryPointsByBackupVaultInput { /* private fields */ }
Implementations
sourceimpl ListRecoveryPointsByBackupVaultInput
impl ListRecoveryPointsByBackupVaultInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListRecoveryPointsByBackupVault, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListRecoveryPointsByBackupVault, AwsErrorRetryPolicy>, 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
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<ListRecoveryPointsByBackupVaultInput> for ListRecoveryPointsByBackupVaultInput
impl PartialEq<ListRecoveryPointsByBackupVaultInput> for ListRecoveryPointsByBackupVaultInput
sourcefn eq(&self, other: &ListRecoveryPointsByBackupVaultInput) -> bool
fn eq(&self, other: &ListRecoveryPointsByBackupVaultInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for ListRecoveryPointsByBackupVaultInput
Auto Trait Implementations
impl RefUnwindSafe for ListRecoveryPointsByBackupVaultInput
impl Send for ListRecoveryPointsByBackupVaultInput
impl Sync for ListRecoveryPointsByBackupVaultInput
impl Unpin for ListRecoveryPointsByBackupVaultInput
impl UnwindSafe for ListRecoveryPointsByBackupVaultInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more