Struct aws_sdk_databrew::types::StatisticsConfiguration
source · #[non_exhaustive]pub struct StatisticsConfiguration {
pub included_statistics: Option<Vec<String>>,
pub overrides: Option<Vec<StatisticOverride>>,
}
Expand description
Configuration of evaluations for a profile job. This configuration can be used to select evaluations and override the parameters of selected evaluations.
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.included_statistics: Option<Vec<String>>
List of included evaluations. When the list is undefined, all supported evaluations will be included.
overrides: Option<Vec<StatisticOverride>>
List of overrides for evaluations.
Implementations§
source§impl StatisticsConfiguration
impl StatisticsConfiguration
sourcepub fn included_statistics(&self) -> Option<&[String]>
pub fn included_statistics(&self) -> Option<&[String]>
List of included evaluations. When the list is undefined, all supported evaluations will be included.
sourcepub fn overrides(&self) -> Option<&[StatisticOverride]>
pub fn overrides(&self) -> Option<&[StatisticOverride]>
List of overrides for evaluations.
source§impl StatisticsConfiguration
impl StatisticsConfiguration
sourcepub fn builder() -> StatisticsConfigurationBuilder
pub fn builder() -> StatisticsConfigurationBuilder
Creates a new builder-style object to manufacture StatisticsConfiguration
.
Trait Implementations§
source§impl Clone for StatisticsConfiguration
impl Clone for StatisticsConfiguration
source§fn clone(&self) -> StatisticsConfiguration
fn clone(&self) -> StatisticsConfiguration
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 StatisticsConfiguration
impl Debug for StatisticsConfiguration
source§impl PartialEq<StatisticsConfiguration> for StatisticsConfiguration
impl PartialEq<StatisticsConfiguration> for StatisticsConfiguration
source§fn eq(&self, other: &StatisticsConfiguration) -> bool
fn eq(&self, other: &StatisticsConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StatisticsConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for StatisticsConfiguration
impl Send for StatisticsConfiguration
impl Sync for StatisticsConfiguration
impl Unpin for StatisticsConfiguration
impl UnwindSafe for StatisticsConfiguration
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