pub struct GetFindingsReportAccountSummaryResponse {
pub next_token: Option<String>,
pub report_summaries: Vec<FindingsReportSummary>,
}Expand description
The structure representing the GetFindingsReportAccountSummaryResponse.
Fields§
§next_token: Option<String>The nextToken value to include in a future GetFindingsReportAccountSummary request. When the results of a GetFindingsReportAccountSummary request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
report_summaries: Vec<FindingsReportSummary>The return list of FindingsReportSummary objects taht contain summaries of analysis results for all profiling groups in your AWS account.
Trait Implementations§
Source§impl Clone for GetFindingsReportAccountSummaryResponse
impl Clone for GetFindingsReportAccountSummaryResponse
Source§fn clone(&self) -> GetFindingsReportAccountSummaryResponse
fn clone(&self) -> GetFindingsReportAccountSummaryResponse
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 GetFindingsReportAccountSummaryResponse
impl Default for GetFindingsReportAccountSummaryResponse
Source§fn default() -> GetFindingsReportAccountSummaryResponse
fn default() -> GetFindingsReportAccountSummaryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetFindingsReportAccountSummaryResponse
impl<'de> Deserialize<'de> for GetFindingsReportAccountSummaryResponse
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 GetFindingsReportAccountSummaryResponse
impl PartialEq for GetFindingsReportAccountSummaryResponse
Source§fn eq(&self, other: &GetFindingsReportAccountSummaryResponse) -> bool
fn eq(&self, other: &GetFindingsReportAccountSummaryResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetFindingsReportAccountSummaryResponse
Auto Trait Implementations§
impl Freeze for GetFindingsReportAccountSummaryResponse
impl RefUnwindSafe for GetFindingsReportAccountSummaryResponse
impl Send for GetFindingsReportAccountSummaryResponse
impl Sync for GetFindingsReportAccountSummaryResponse
impl Unpin for GetFindingsReportAccountSummaryResponse
impl UnwindSafe for GetFindingsReportAccountSummaryResponse
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