pub struct ListReportsOutput {
pub next_token: Option<String>,
pub reports: Option<Vec<String>>,
}
Fields§
§next_token: Option<String>
During a previous call, the maximum number of items that can be returned is the value specified in maxResults
. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
reports: Option<Vec<String>>
The list of returned ARNs for the reports in the current AWS account.
Trait Implementations§
Source§impl Clone for ListReportsOutput
impl Clone for ListReportsOutput
Source§fn clone(&self) -> ListReportsOutput
fn clone(&self) -> ListReportsOutput
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 Debug for ListReportsOutput
impl Debug for ListReportsOutput
Source§impl Default for ListReportsOutput
impl Default for ListReportsOutput
Source§fn default() -> ListReportsOutput
fn default() -> ListReportsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListReportsOutput
impl<'de> Deserialize<'de> for ListReportsOutput
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 ListReportsOutput
impl PartialEq for ListReportsOutput
impl StructuralPartialEq for ListReportsOutput
Auto Trait Implementations§
impl Freeze for ListReportsOutput
impl RefUnwindSafe for ListReportsOutput
impl Send for ListReportsOutput
impl Sync for ListReportsOutput
impl Unpin for ListReportsOutput
impl UnwindSafe for ListReportsOutput
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