Struct aws_sdk_sagemaker::model::MonitoringDatasetFormat
source · #[non_exhaustive]pub struct MonitoringDatasetFormat { /* private fields */ }
Expand description
Represents the dataset format used when running a monitoring job.
Implementations§
source§impl MonitoringDatasetFormat
impl MonitoringDatasetFormat
sourcepub fn csv(&self) -> Option<&MonitoringCsvDatasetFormat>
pub fn csv(&self) -> Option<&MonitoringCsvDatasetFormat>
The CSV dataset used in the monitoring job.
sourcepub fn json(&self) -> Option<&MonitoringJsonDatasetFormat>
pub fn json(&self) -> Option<&MonitoringJsonDatasetFormat>
The JSON dataset used in the monitoring job
sourcepub fn parquet(&self) -> Option<&MonitoringParquetDatasetFormat>
pub fn parquet(&self) -> Option<&MonitoringParquetDatasetFormat>
The Parquet dataset used in the monitoring job
source§impl MonitoringDatasetFormat
impl MonitoringDatasetFormat
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture MonitoringDatasetFormat
.
Trait Implementations§
source§impl Clone for MonitoringDatasetFormat
impl Clone for MonitoringDatasetFormat
source§fn clone(&self) -> MonitoringDatasetFormat
fn clone(&self) -> MonitoringDatasetFormat
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 MonitoringDatasetFormat
impl Debug for MonitoringDatasetFormat
source§impl PartialEq<MonitoringDatasetFormat> for MonitoringDatasetFormat
impl PartialEq<MonitoringDatasetFormat> for MonitoringDatasetFormat
source§fn eq(&self, other: &MonitoringDatasetFormat) -> bool
fn eq(&self, other: &MonitoringDatasetFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.