#[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
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) -> &[FindingHistoryRecord]
pub fn records(&self) -> &[FindingHistoryRecord]
A list of events that altered the specified finding during the specified time period.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .records.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
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>
None
if the service could not be reached.impl StructuralPartialEq for GetFindingHistoryOutput
Auto Trait Implementations§
impl Freeze for GetFindingHistoryOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more