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
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) -> &[String]
pub fn included_statistics(&self) -> &[String]
List of included evaluations. When the list is undefined, all supported evaluations will be included.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .included_statistics.is_none()
.
sourcepub fn overrides(&self) -> &[StatisticOverride]
pub fn overrides(&self) -> &[StatisticOverride]
List of overrides for evaluations.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .overrides.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StatisticsConfiguration
impl Debug for StatisticsConfiguration
source§impl PartialEq for StatisticsConfiguration
impl PartialEq for StatisticsConfiguration
source§fn eq(&self, other: &StatisticsConfiguration) -> bool
fn eq(&self, other: &StatisticsConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.