pub struct ListProtectedResourcesOutput {
pub next_token: Option<String>,
pub results: Option<Vec<ProtectedResource>>,
}
Fields§
§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.
results: Option<Vec<ProtectedResource>>
An array of resources successfully backed up by AWS Backup including the time the resource was saved, an Amazon Resource Name (ARN) of the resource, and a resource type.
Trait Implementations§
Source§impl Clone for ListProtectedResourcesOutput
impl Clone for ListProtectedResourcesOutput
Source§fn clone(&self) -> ListProtectedResourcesOutput
fn clone(&self) -> ListProtectedResourcesOutput
Returns a copy 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 Debug for ListProtectedResourcesOutput
impl Debug for ListProtectedResourcesOutput
Source§impl Default for ListProtectedResourcesOutput
impl Default for ListProtectedResourcesOutput
Source§fn default() -> ListProtectedResourcesOutput
fn default() -> ListProtectedResourcesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListProtectedResourcesOutput
impl<'de> Deserialize<'de> for ListProtectedResourcesOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListProtectedResourcesOutput
impl PartialEq for ListProtectedResourcesOutput
Source§fn eq(&self, other: &ListProtectedResourcesOutput) -> bool
fn eq(&self, other: &ListProtectedResourcesOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListProtectedResourcesOutput
Auto Trait Implementations§
impl Freeze for ListProtectedResourcesOutput
impl RefUnwindSafe for ListProtectedResourcesOutput
impl Send for ListProtectedResourcesOutput
impl Sync for ListProtectedResourcesOutput
impl Unpin for ListProtectedResourcesOutput
impl UnwindSafe for ListProtectedResourcesOutput
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