#[non_exhaustive]pub struct GetFindingHistoryOutput {
pub records: Option<Vec<FindingHistoryRecord>>,
pub next_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.records: Option<Vec<FindingHistoryRecord>>A list of events that altered the specified finding during the specified time period.
next_token: Option<String> A token for pagination purposes. Provide this token in the subsequent request to GetFindingsHistory to get up to an additional 100 results of history for the same finding that you specified in your initial request.
Implementations§
source§impl GetFindingHistoryOutput
impl GetFindingHistoryOutput
sourcepub fn records(&self) -> Option<&[FindingHistoryRecord]>
pub fn records(&self) -> Option<&[FindingHistoryRecord]>
A list of events that altered the specified finding during the specified time period.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token for pagination purposes. Provide this token in the subsequent request to GetFindingsHistory to get up to an additional 100 results of history for the same finding that you specified in your initial request.
source§impl GetFindingHistoryOutput
impl GetFindingHistoryOutput
sourcepub fn builder() -> GetFindingHistoryOutputBuilder
pub fn builder() -> GetFindingHistoryOutputBuilder
Creates a new builder-style object to manufacture GetFindingHistoryOutput.
Trait Implementations§
source§impl Clone for GetFindingHistoryOutput
impl Clone for GetFindingHistoryOutput
source§fn clone(&self) -> GetFindingHistoryOutput
fn clone(&self) -> GetFindingHistoryOutput
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 GetFindingHistoryOutput
impl Debug for GetFindingHistoryOutput
source§impl PartialEq for GetFindingHistoryOutput
impl PartialEq for GetFindingHistoryOutput
source§fn eq(&self, other: &GetFindingHistoryOutput) -> bool
fn eq(&self, other: &GetFindingHistoryOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetFindingHistoryOutput
impl RequestId for GetFindingHistoryOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetFindingHistoryOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetFindingHistoryOutput
impl Send for GetFindingHistoryOutput
impl Sync for GetFindingHistoryOutput
impl Unpin for GetFindingHistoryOutput
impl UnwindSafe for GetFindingHistoryOutput
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