pub struct ListRecoveryPointsByResource { /* private fields */ }
Expand description
Fluent builder constructing a request to ListRecoveryPointsByResource
.
Returns detailed information about all the recovery points of the type specified by a resource Amazon Resource Name (ARN).
For Amazon EFS and Amazon EC2, this action only lists recovery points created by Backup.
Implementations
sourceimpl ListRecoveryPointsByResource
impl ListRecoveryPointsByResource
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListRecoveryPointsByResource, AwsResponseRetryClassifier>, SdkError<ListRecoveryPointsByResourceError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ListRecoveryPointsByResource, AwsResponseRetryClassifier>, SdkError<ListRecoveryPointsByResourceError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ListRecoveryPointsByResourceOutput, SdkError<ListRecoveryPointsByResourceError>>
pub async fn send(
self
) -> Result<ListRecoveryPointsByResourceOutput, SdkError<ListRecoveryPointsByResourceError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> ListRecoveryPointsByResourcePaginator
pub fn into_paginator(self) -> ListRecoveryPointsByResourcePaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
sourcepub fn resource_arn(self, input: impl Into<String>) -> Self
pub fn resource_arn(self, input: impl Into<String>) -> Self
An ARN that uniquely identifies a resource. The format of the ARN depends on the resource type.
sourcepub fn set_resource_arn(self, input: Option<String>) -> Self
pub fn set_resource_arn(self, input: Option<String>) -> Self
An ARN that uniquely identifies a resource. The format of the ARN depends on the resource type.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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 set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
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, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of items to be returned.
Amazon RDS requires a value of at least 20.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of items to be returned.
Amazon RDS requires a value of at least 20.
Trait Implementations
sourceimpl Clone for ListRecoveryPointsByResource
impl Clone for ListRecoveryPointsByResource
sourcefn clone(&self) -> ListRecoveryPointsByResource
fn clone(&self) -> ListRecoveryPointsByResource
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more