#[non_exhaustive]pub struct ImageScanFindingAggregationBuilder { /* private fields */ }
Expand description
A builder for ImageScanFindingAggregation
.
Implementations§
source§impl ImageScanFindingAggregationBuilder
impl ImageScanFindingAggregationBuilder
sourcepub fn account_aggregation(self, input: AccountAggregation) -> Self
pub fn account_aggregation(self, input: AccountAggregation) -> Self
Returns an object that contains severity counts based on an account ID.
sourcepub fn set_account_aggregation(self, input: Option<AccountAggregation>) -> Self
pub fn set_account_aggregation(self, input: Option<AccountAggregation>) -> Self
Returns an object that contains severity counts based on an account ID.
sourcepub fn get_account_aggregation(&self) -> &Option<AccountAggregation>
pub fn get_account_aggregation(&self) -> &Option<AccountAggregation>
Returns an object that contains severity counts based on an account ID.
sourcepub fn image_aggregation(self, input: ImageAggregation) -> Self
pub fn image_aggregation(self, input: ImageAggregation) -> Self
Returns an object that contains severity counts based on the Amazon Resource Name (ARN) for a specific image.
sourcepub fn set_image_aggregation(self, input: Option<ImageAggregation>) -> Self
pub fn set_image_aggregation(self, input: Option<ImageAggregation>) -> Self
Returns an object that contains severity counts based on the Amazon Resource Name (ARN) for a specific image.
sourcepub fn get_image_aggregation(&self) -> &Option<ImageAggregation>
pub fn get_image_aggregation(&self) -> &Option<ImageAggregation>
Returns an object that contains severity counts based on the Amazon Resource Name (ARN) for a specific image.
sourcepub fn image_pipeline_aggregation(self, input: ImagePipelineAggregation) -> Self
pub fn image_pipeline_aggregation(self, input: ImagePipelineAggregation) -> Self
Returns an object that contains severity counts based on an image pipeline ARN.
sourcepub fn set_image_pipeline_aggregation(
self,
input: Option<ImagePipelineAggregation>
) -> Self
pub fn set_image_pipeline_aggregation( self, input: Option<ImagePipelineAggregation> ) -> Self
Returns an object that contains severity counts based on an image pipeline ARN.
sourcepub fn get_image_pipeline_aggregation(
&self
) -> &Option<ImagePipelineAggregation>
pub fn get_image_pipeline_aggregation( &self ) -> &Option<ImagePipelineAggregation>
Returns an object that contains severity counts based on an image pipeline ARN.
sourcepub fn vulnerability_id_aggregation(
self,
input: VulnerabilityIdAggregation
) -> Self
pub fn vulnerability_id_aggregation( self, input: VulnerabilityIdAggregation ) -> Self
Returns an object that contains severity counts based on vulnerability ID.
sourcepub fn set_vulnerability_id_aggregation(
self,
input: Option<VulnerabilityIdAggregation>
) -> Self
pub fn set_vulnerability_id_aggregation( self, input: Option<VulnerabilityIdAggregation> ) -> Self
Returns an object that contains severity counts based on vulnerability ID.
sourcepub fn get_vulnerability_id_aggregation(
&self
) -> &Option<VulnerabilityIdAggregation>
pub fn get_vulnerability_id_aggregation( &self ) -> &Option<VulnerabilityIdAggregation>
Returns an object that contains severity counts based on vulnerability ID.
sourcepub fn build(self) -> ImageScanFindingAggregation
pub fn build(self) -> ImageScanFindingAggregation
Consumes the builder and constructs a ImageScanFindingAggregation
.
Trait Implementations§
source§impl Clone for ImageScanFindingAggregationBuilder
impl Clone for ImageScanFindingAggregationBuilder
source§fn clone(&self) -> ImageScanFindingAggregationBuilder
fn clone(&self) -> ImageScanFindingAggregationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ImageScanFindingAggregationBuilder
impl Default for ImageScanFindingAggregationBuilder
source§fn default() -> ImageScanFindingAggregationBuilder
fn default() -> ImageScanFindingAggregationBuilder
source§impl PartialEq for ImageScanFindingAggregationBuilder
impl PartialEq for ImageScanFindingAggregationBuilder
source§fn eq(&self, other: &ImageScanFindingAggregationBuilder) -> bool
fn eq(&self, other: &ImageScanFindingAggregationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImageScanFindingAggregationBuilder
Auto Trait Implementations§
impl Freeze for ImageScanFindingAggregationBuilder
impl RefUnwindSafe for ImageScanFindingAggregationBuilder
impl Send for ImageScanFindingAggregationBuilder
impl Sync for ImageScanFindingAggregationBuilder
impl Unpin for ImageScanFindingAggregationBuilder
impl UnwindSafe for ImageScanFindingAggregationBuilder
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