pub struct ListRecoveryPointsByResourceInput {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub resource_arn: String,
}
Fields§
§max_results: Option<i64>
The maximum number of items to be returned.
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.
resource_arn: String
An ARN that uniquely identifies a resource. The format of the ARN depends on the resource type.
Trait Implementations§
Source§impl Clone for ListRecoveryPointsByResourceInput
impl Clone for ListRecoveryPointsByResourceInput
Source§fn clone(&self) -> ListRecoveryPointsByResourceInput
fn clone(&self) -> ListRecoveryPointsByResourceInput
Returns a duplicate 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 Default for ListRecoveryPointsByResourceInput
impl Default for ListRecoveryPointsByResourceInput
Source§fn default() -> ListRecoveryPointsByResourceInput
fn default() -> ListRecoveryPointsByResourceInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListRecoveryPointsByResourceInput
impl PartialEq for ListRecoveryPointsByResourceInput
Source§fn eq(&self, other: &ListRecoveryPointsByResourceInput) -> bool
fn eq(&self, other: &ListRecoveryPointsByResourceInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListRecoveryPointsByResourceInput
Auto Trait Implementations§
impl Freeze for ListRecoveryPointsByResourceInput
impl RefUnwindSafe for ListRecoveryPointsByResourceInput
impl Send for ListRecoveryPointsByResourceInput
impl Sync for ListRecoveryPointsByResourceInput
impl Unpin for ListRecoveryPointsByResourceInput
impl UnwindSafe for ListRecoveryPointsByResourceInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more