pub struct ListReportsForReportGroupOutput {
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 report group ARNs.
Trait Implementations§
Source§impl Clone for ListReportsForReportGroupOutput
impl Clone for ListReportsForReportGroupOutput
Source§fn clone(&self) -> ListReportsForReportGroupOutput
fn clone(&self) -> ListReportsForReportGroupOutput
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 ListReportsForReportGroupOutput
impl Default for ListReportsForReportGroupOutput
Source§fn default() -> ListReportsForReportGroupOutput
fn default() -> ListReportsForReportGroupOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListReportsForReportGroupOutput
impl<'de> Deserialize<'de> for ListReportsForReportGroupOutput
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 ListReportsForReportGroupOutput
impl PartialEq for ListReportsForReportGroupOutput
Source§fn eq(&self, other: &ListReportsForReportGroupOutput) -> bool
fn eq(&self, other: &ListReportsForReportGroupOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListReportsForReportGroupOutput
Auto Trait Implementations§
impl Freeze for ListReportsForReportGroupOutput
impl RefUnwindSafe for ListReportsForReportGroupOutput
impl Send for ListReportsForReportGroupOutput
impl Sync for ListReportsForReportGroupOutput
impl Unpin for ListReportsForReportGroupOutput
impl UnwindSafe for ListReportsForReportGroupOutput
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