Struct aws_sdk_glue::types::builders::StatisticAnnotationBuilder
source · #[non_exhaustive]pub struct StatisticAnnotationBuilder { /* private fields */ }Expand description
A builder for StatisticAnnotation.
Implementations§
source§impl StatisticAnnotationBuilder
impl StatisticAnnotationBuilder
sourcepub fn profile_id(self, input: impl Into<String>) -> Self
pub fn profile_id(self, input: impl Into<String>) -> Self
The Profile ID.
sourcepub fn set_profile_id(self, input: Option<String>) -> Self
pub fn set_profile_id(self, input: Option<String>) -> Self
The Profile ID.
sourcepub fn get_profile_id(&self) -> &Option<String>
pub fn get_profile_id(&self) -> &Option<String>
The Profile ID.
sourcepub fn statistic_id(self, input: impl Into<String>) -> Self
pub fn statistic_id(self, input: impl Into<String>) -> Self
The Statistic ID.
sourcepub fn set_statistic_id(self, input: Option<String>) -> Self
pub fn set_statistic_id(self, input: Option<String>) -> Self
The Statistic ID.
sourcepub fn get_statistic_id(&self) -> &Option<String>
pub fn get_statistic_id(&self) -> &Option<String>
The Statistic ID.
sourcepub fn statistic_recorded_on(self, input: DateTime) -> Self
pub fn statistic_recorded_on(self, input: DateTime) -> Self
The timestamp when the annotated statistic was recorded.
sourcepub fn set_statistic_recorded_on(self, input: Option<DateTime>) -> Self
pub fn set_statistic_recorded_on(self, input: Option<DateTime>) -> Self
The timestamp when the annotated statistic was recorded.
sourcepub fn get_statistic_recorded_on(&self) -> &Option<DateTime>
pub fn get_statistic_recorded_on(&self) -> &Option<DateTime>
The timestamp when the annotated statistic was recorded.
sourcepub fn inclusion_annotation(self, input: TimestampedInclusionAnnotation) -> Self
pub fn inclusion_annotation(self, input: TimestampedInclusionAnnotation) -> Self
The inclusion annotation applied to the statistic.
sourcepub fn set_inclusion_annotation(
self,
input: Option<TimestampedInclusionAnnotation>,
) -> Self
pub fn set_inclusion_annotation( self, input: Option<TimestampedInclusionAnnotation>, ) -> Self
The inclusion annotation applied to the statistic.
sourcepub fn get_inclusion_annotation(
&self,
) -> &Option<TimestampedInclusionAnnotation>
pub fn get_inclusion_annotation( &self, ) -> &Option<TimestampedInclusionAnnotation>
The inclusion annotation applied to the statistic.
sourcepub fn build(self) -> StatisticAnnotation
pub fn build(self) -> StatisticAnnotation
Consumes the builder and constructs a StatisticAnnotation.
Trait Implementations§
source§impl Clone for StatisticAnnotationBuilder
impl Clone for StatisticAnnotationBuilder
source§fn clone(&self) -> StatisticAnnotationBuilder
fn clone(&self) -> StatisticAnnotationBuilder
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 StatisticAnnotationBuilder
impl Debug for StatisticAnnotationBuilder
source§impl Default for StatisticAnnotationBuilder
impl Default for StatisticAnnotationBuilder
source§fn default() -> StatisticAnnotationBuilder
fn default() -> StatisticAnnotationBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for StatisticAnnotationBuilder
Auto Trait Implementations§
impl Freeze for StatisticAnnotationBuilder
impl RefUnwindSafe for StatisticAnnotationBuilder
impl Send for StatisticAnnotationBuilder
impl Sync for StatisticAnnotationBuilder
impl Unpin for StatisticAnnotationBuilder
impl UnwindSafe for StatisticAnnotationBuilder
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
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.