pub struct CreateInsightRequest {
pub filters: AwsSecurityFindingFilters,
pub group_by_attribute: String,
pub name: String,
}
Fields§
§filters: AwsSecurityFindingFilters
One or more attributes used to filter the findings included in the insight. The insight only includes findings that match the criteria defined in the filters.
group_by_attribute: String
The attribute used to group the findings for the insight. The grouping attribute identifies the type of item that the insight applies to. For example, if an insight is grouped by resource identifier, then the insight produces a list of resource identifiers.
name: String
The name of the custom insight to create.
Trait Implementations§
Source§impl Clone for CreateInsightRequest
impl Clone for CreateInsightRequest
Source§fn clone(&self) -> CreateInsightRequest
fn clone(&self) -> CreateInsightRequest
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 CreateInsightRequest
impl Debug for CreateInsightRequest
Source§impl Default for CreateInsightRequest
impl Default for CreateInsightRequest
Source§fn default() -> CreateInsightRequest
fn default() -> CreateInsightRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateInsightRequest
impl PartialEq for CreateInsightRequest
Source§impl Serialize for CreateInsightRequest
impl Serialize for CreateInsightRequest
impl StructuralPartialEq for CreateInsightRequest
Auto Trait Implementations§
impl Freeze for CreateInsightRequest
impl RefUnwindSafe for CreateInsightRequest
impl Send for CreateInsightRequest
impl Sync for CreateInsightRequest
impl Unpin for CreateInsightRequest
impl UnwindSafe for CreateInsightRequest
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