Struct aws_sdk_glue::types::StatisticSummary
source · #[non_exhaustive]pub struct StatisticSummary {
pub statistic_id: Option<String>,
pub profile_id: Option<String>,
pub run_identifier: Option<RunIdentifier>,
pub statistic_name: Option<String>,
pub double_value: f64,
pub evaluation_level: Option<StatisticEvaluationLevel>,
pub columns_referenced: Option<Vec<String>>,
pub referenced_datasets: Option<Vec<String>>,
pub statistic_properties: Option<HashMap<String, String>>,
pub recorded_on: Option<DateTime>,
pub inclusion_annotation: Option<TimestampedInclusionAnnotation>,
}Expand description
Summary information about a statistic.
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.statistic_id: Option<String>The Statistic ID.
profile_id: Option<String>The Profile ID.
run_identifier: Option<RunIdentifier>The Run Identifier
statistic_name: Option<String>The name of the statistic.
double_value: f64The value of the statistic.
evaluation_level: Option<StatisticEvaluationLevel>The evaluation level of the statistic. Possible values: Dataset, Column, Multicolumn.
columns_referenced: Option<Vec<String>>The list of columns referenced by the statistic.
referenced_datasets: Option<Vec<String>>The list of datasets referenced by the statistic.
statistic_properties: Option<HashMap<String, String>>A StatisticPropertiesMap, which contains a NameString and DescriptionString
recorded_on: Option<DateTime>The timestamp when the statistic was recorded.
inclusion_annotation: Option<TimestampedInclusionAnnotation>The inclusion annotation for the statistic.
Implementations§
source§impl StatisticSummary
impl StatisticSummary
sourcepub fn statistic_id(&self) -> Option<&str>
pub fn statistic_id(&self) -> Option<&str>
The Statistic ID.
sourcepub fn profile_id(&self) -> Option<&str>
pub fn profile_id(&self) -> Option<&str>
The Profile ID.
sourcepub fn run_identifier(&self) -> Option<&RunIdentifier>
pub fn run_identifier(&self) -> Option<&RunIdentifier>
The Run Identifier
sourcepub fn statistic_name(&self) -> Option<&str>
pub fn statistic_name(&self) -> Option<&str>
The name of the statistic.
sourcepub fn double_value(&self) -> f64
pub fn double_value(&self) -> f64
The value of the statistic.
sourcepub fn evaluation_level(&self) -> Option<&StatisticEvaluationLevel>
pub fn evaluation_level(&self) -> Option<&StatisticEvaluationLevel>
The evaluation level of the statistic. Possible values: Dataset, Column, Multicolumn.
sourcepub fn columns_referenced(&self) -> &[String]
pub fn columns_referenced(&self) -> &[String]
The list of columns referenced by the statistic.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .columns_referenced.is_none().
sourcepub fn referenced_datasets(&self) -> &[String]
pub fn referenced_datasets(&self) -> &[String]
The list of datasets referenced by the statistic.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .referenced_datasets.is_none().
sourcepub fn statistic_properties(&self) -> Option<&HashMap<String, String>>
pub fn statistic_properties(&self) -> Option<&HashMap<String, String>>
A StatisticPropertiesMap, which contains a NameString and DescriptionString
sourcepub fn recorded_on(&self) -> Option<&DateTime>
pub fn recorded_on(&self) -> Option<&DateTime>
The timestamp when the statistic was recorded.
sourcepub fn inclusion_annotation(&self) -> Option<&TimestampedInclusionAnnotation>
pub fn inclusion_annotation(&self) -> Option<&TimestampedInclusionAnnotation>
The inclusion annotation for the statistic.
source§impl StatisticSummary
impl StatisticSummary
sourcepub fn builder() -> StatisticSummaryBuilder
pub fn builder() -> StatisticSummaryBuilder
Creates a new builder-style object to manufacture StatisticSummary.
Trait Implementations§
source§impl Clone for StatisticSummary
impl Clone for StatisticSummary
source§fn clone(&self) -> StatisticSummary
fn clone(&self) -> StatisticSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StatisticSummary
impl Debug for StatisticSummary
source§impl PartialEq for StatisticSummary
impl PartialEq for StatisticSummary
impl StructuralPartialEq for StatisticSummary
Auto Trait Implementations§
impl Freeze for StatisticSummary
impl RefUnwindSafe for StatisticSummary
impl Send for StatisticSummary
impl Sync for StatisticSummary
impl Unpin for StatisticSummary
impl UnwindSafe for StatisticSummary
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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