Struct aws_sdk_glue::types::builders::RunMetricsBuilder
source · #[non_exhaustive]pub struct RunMetricsBuilder { /* private fields */ }Expand description
A builder for RunMetrics.
Implementations§
source§impl RunMetricsBuilder
impl RunMetricsBuilder
sourcepub fn number_of_bytes_compacted(self, input: impl Into<String>) -> Self
pub fn number_of_bytes_compacted(self, input: impl Into<String>) -> Self
The number of bytes removed by the compaction job run.
sourcepub fn set_number_of_bytes_compacted(self, input: Option<String>) -> Self
pub fn set_number_of_bytes_compacted(self, input: Option<String>) -> Self
The number of bytes removed by the compaction job run.
sourcepub fn get_number_of_bytes_compacted(&self) -> &Option<String>
pub fn get_number_of_bytes_compacted(&self) -> &Option<String>
The number of bytes removed by the compaction job run.
sourcepub fn number_of_files_compacted(self, input: impl Into<String>) -> Self
pub fn number_of_files_compacted(self, input: impl Into<String>) -> Self
The number of files removed by the compaction job run.
sourcepub fn set_number_of_files_compacted(self, input: Option<String>) -> Self
pub fn set_number_of_files_compacted(self, input: Option<String>) -> Self
The number of files removed by the compaction job run.
sourcepub fn get_number_of_files_compacted(&self) -> &Option<String>
pub fn get_number_of_files_compacted(&self) -> &Option<String>
The number of files removed by the compaction job run.
sourcepub fn number_of_dpus(self, input: impl Into<String>) -> Self
pub fn number_of_dpus(self, input: impl Into<String>) -> Self
The number of DPU hours consumed by the job.
sourcepub fn set_number_of_dpus(self, input: Option<String>) -> Self
pub fn set_number_of_dpus(self, input: Option<String>) -> Self
The number of DPU hours consumed by the job.
sourcepub fn get_number_of_dpus(&self) -> &Option<String>
pub fn get_number_of_dpus(&self) -> &Option<String>
The number of DPU hours consumed by the job.
sourcepub fn job_duration_in_hour(self, input: impl Into<String>) -> Self
pub fn job_duration_in_hour(self, input: impl Into<String>) -> Self
The duration of the job in hours.
sourcepub fn set_job_duration_in_hour(self, input: Option<String>) -> Self
pub fn set_job_duration_in_hour(self, input: Option<String>) -> Self
The duration of the job in hours.
sourcepub fn get_job_duration_in_hour(&self) -> &Option<String>
pub fn get_job_duration_in_hour(&self) -> &Option<String>
The duration of the job in hours.
sourcepub fn build(self) -> RunMetrics
pub fn build(self) -> RunMetrics
Consumes the builder and constructs a RunMetrics.
Trait Implementations§
source§impl Clone for RunMetricsBuilder
impl Clone for RunMetricsBuilder
source§fn clone(&self) -> RunMetricsBuilder
fn clone(&self) -> RunMetricsBuilder
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 RunMetricsBuilder
impl Debug for RunMetricsBuilder
source§impl Default for RunMetricsBuilder
impl Default for RunMetricsBuilder
source§fn default() -> RunMetricsBuilder
fn default() -> RunMetricsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for RunMetricsBuilder
impl PartialEq for RunMetricsBuilder
impl StructuralPartialEq for RunMetricsBuilder
Auto Trait Implementations§
impl Freeze for RunMetricsBuilder
impl RefUnwindSafe for RunMetricsBuilder
impl Send for RunMetricsBuilder
impl Sync for RunMetricsBuilder
impl Unpin for RunMetricsBuilder
impl UnwindSafe for RunMetricsBuilder
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.