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 ==
.impl StructuralPartialEq for StatisticsConfiguration
Auto Trait Implementations§
impl Freeze for StatisticsConfiguration
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
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