Struct aws_sdk_macie2::operation::get_findings::GetFindingsInput
source · #[non_exhaustive]pub struct GetFindingsInput {
pub finding_ids: Option<Vec<String>>,
pub sort_criteria: Option<SortCriteria>,
}
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.finding_ids: Option<Vec<String>>
An array of strings that lists the unique identifiers for the findings to retrieve. You can specify as many as 50 unique identifiers in this array.
sort_criteria: Option<SortCriteria>
The criteria for sorting the results of the request.
Implementations§
source§impl GetFindingsInput
impl GetFindingsInput
sourcepub fn finding_ids(&self) -> Option<&[String]>
pub fn finding_ids(&self) -> Option<&[String]>
An array of strings that lists the unique identifiers for the findings to retrieve. You can specify as many as 50 unique identifiers in this array.
sourcepub fn sort_criteria(&self) -> Option<&SortCriteria>
pub fn sort_criteria(&self) -> Option<&SortCriteria>
The criteria for sorting the results of the request.
source§impl GetFindingsInput
impl GetFindingsInput
sourcepub fn builder() -> GetFindingsInputBuilder
pub fn builder() -> GetFindingsInputBuilder
Creates a new builder-style object to manufacture GetFindingsInput
.
Trait Implementations§
source§impl Clone for GetFindingsInput
impl Clone for GetFindingsInput
source§fn clone(&self) -> GetFindingsInput
fn clone(&self) -> GetFindingsInput
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 GetFindingsInput
impl Debug for GetFindingsInput
source§impl PartialEq<GetFindingsInput> for GetFindingsInput
impl PartialEq<GetFindingsInput> for GetFindingsInput
source§fn eq(&self, other: &GetFindingsInput) -> bool
fn eq(&self, other: &GetFindingsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetFindingsInput
Auto Trait Implementations§
impl RefUnwindSafe for GetFindingsInput
impl Send for GetFindingsInput
impl Sync for GetFindingsInput
impl Unpin for GetFindingsInput
impl UnwindSafe for GetFindingsInput
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