Struct aws_sdk_glue::model::CrawlerMetrics
source · #[non_exhaustive]pub struct CrawlerMetrics { /* private fields */ }Expand description
Metrics for a specified crawler.
Implementations§
source§impl CrawlerMetrics
impl CrawlerMetrics
sourcepub fn crawler_name(&self) -> Option<&str>
pub fn crawler_name(&self) -> Option<&str>
The name of the crawler.
sourcepub fn time_left_seconds(&self) -> f64
pub fn time_left_seconds(&self) -> f64
The estimated time left to complete a running crawl.
sourcepub fn still_estimating(&self) -> bool
pub fn still_estimating(&self) -> bool
True if the crawler is still estimating how long it will take to complete this run.
sourcepub fn last_runtime_seconds(&self) -> f64
pub fn last_runtime_seconds(&self) -> f64
The duration of the crawler's most recent run, in seconds.
sourcepub fn median_runtime_seconds(&self) -> f64
pub fn median_runtime_seconds(&self) -> f64
The median duration of this crawler's runs, in seconds.
sourcepub fn tables_created(&self) -> i32
pub fn tables_created(&self) -> i32
The number of tables created by this crawler.
sourcepub fn tables_updated(&self) -> i32
pub fn tables_updated(&self) -> i32
The number of tables updated by this crawler.
sourcepub fn tables_deleted(&self) -> i32
pub fn tables_deleted(&self) -> i32
The number of tables deleted by this crawler.
source§impl CrawlerMetrics
impl CrawlerMetrics
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CrawlerMetrics.
Trait Implementations§
source§impl Clone for CrawlerMetrics
impl Clone for CrawlerMetrics
source§fn clone(&self) -> CrawlerMetrics
fn clone(&self) -> CrawlerMetrics
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 CrawlerMetrics
impl Debug for CrawlerMetrics
source§impl PartialEq<CrawlerMetrics> for CrawlerMetrics
impl PartialEq<CrawlerMetrics> for CrawlerMetrics
source§fn eq(&self, other: &CrawlerMetrics) -> bool
fn eq(&self, other: &CrawlerMetrics) -> bool
This method tests for
self and other values to be equal, and is used
by ==.