pub struct GetFindingsResponse {
pub findings: Vec<AwsSecurityFinding>,
pub next_token: Option<String>,
}
Fields§
§findings: Vec<AwsSecurityFinding>
The findings that matched the filters specified in the request.
next_token: Option<String>
The pagination token to use to request the next page of results.
Trait Implementations§
Source§impl Clone for GetFindingsResponse
impl Clone for GetFindingsResponse
Source§fn clone(&self) -> GetFindingsResponse
fn clone(&self) -> GetFindingsResponse
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 GetFindingsResponse
impl Debug for GetFindingsResponse
Source§impl Default for GetFindingsResponse
impl Default for GetFindingsResponse
Source§fn default() -> GetFindingsResponse
fn default() -> GetFindingsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetFindingsResponse
impl<'de> Deserialize<'de> for GetFindingsResponse
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 GetFindingsResponse
impl PartialEq for GetFindingsResponse
impl StructuralPartialEq for GetFindingsResponse
Auto Trait Implementations§
impl Freeze for GetFindingsResponse
impl RefUnwindSafe for GetFindingsResponse
impl Send for GetFindingsResponse
impl Sync for GetFindingsResponse
impl Unpin for GetFindingsResponse
impl UnwindSafe for GetFindingsResponse
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