Struct aws_sdk_backup::operation::list_recovery_points_by_resource::ListRecoveryPointsByResourceInput
source · #[non_exhaustive]pub struct ListRecoveryPointsByResourceInput {
pub resource_arn: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.resource_arn: Option<String>
An ARN that uniquely identifies a resource. The format of the ARN depends on the resource type.
next_token: Option<String>
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.
max_results: Option<i32>
The maximum number of items to be returned.
Amazon RDS requires a value of at least 20.
Implementations§
source§impl ListRecoveryPointsByResourceInput
impl ListRecoveryPointsByResourceInput
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
An ARN that uniquely identifies a resource. The format of the ARN depends on the resource type.
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.
Amazon RDS requires a value of at least 20.
source§impl ListRecoveryPointsByResourceInput
impl ListRecoveryPointsByResourceInput
sourcepub fn builder() -> ListRecoveryPointsByResourceInputBuilder
pub fn builder() -> ListRecoveryPointsByResourceInputBuilder
Creates a new builder-style object to manufacture ListRecoveryPointsByResourceInput
.
Trait Implementations§
source§impl Clone for ListRecoveryPointsByResourceInput
impl Clone for ListRecoveryPointsByResourceInput
source§fn clone(&self) -> ListRecoveryPointsByResourceInput
fn clone(&self) -> ListRecoveryPointsByResourceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ListRecoveryPointsByResourceInput
impl PartialEq for ListRecoveryPointsByResourceInput
source§fn eq(&self, other: &ListRecoveryPointsByResourceInput) -> bool
fn eq(&self, other: &ListRecoveryPointsByResourceInput) -> bool
self
and other
values to be equal, and is used
by ==
.