pub struct ListReportGroupsOutput {
pub next_token: Option<String>,
pub report_groups: 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.
report_groups: Option<Vec<String>>
The list of ARNs for the report groups in the current AWS account.
Trait Implementations§
Source§impl Clone for ListReportGroupsOutput
impl Clone for ListReportGroupsOutput
Source§fn clone(&self) -> ListReportGroupsOutput
fn clone(&self) -> ListReportGroupsOutput
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 ListReportGroupsOutput
impl Debug for ListReportGroupsOutput
Source§impl Default for ListReportGroupsOutput
impl Default for ListReportGroupsOutput
Source§fn default() -> ListReportGroupsOutput
fn default() -> ListReportGroupsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListReportGroupsOutput
impl<'de> Deserialize<'de> for ListReportGroupsOutput
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 ListReportGroupsOutput
impl PartialEq for ListReportGroupsOutput
impl StructuralPartialEq for ListReportGroupsOutput
Auto Trait Implementations§
impl Freeze for ListReportGroupsOutput
impl RefUnwindSafe for ListReportGroupsOutput
impl Send for ListReportGroupsOutput
impl Sync for ListReportGroupsOutput
impl Unpin for ListReportGroupsOutput
impl UnwindSafe for ListReportGroupsOutput
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