pub struct MonitoringS3Output {
pub local_path: String,
pub s3_upload_mode: Option<String>,
pub s3_uri: String,
}
Expand description
Information about where and how you want to store the results of a monitoring job.
Fields§
§local_path: String
The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. LocalPath is an absolute path for the output data.
s3_upload_mode: Option<String>
Whether to upload the results of the monitoring job continuously or after the job completes.
s3_uri: String
A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
Trait Implementations§
Source§impl Clone for MonitoringS3Output
impl Clone for MonitoringS3Output
Source§fn clone(&self) -> MonitoringS3Output
fn clone(&self) -> MonitoringS3Output
Returns a duplicate 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 MonitoringS3Output
impl Debug for MonitoringS3Output
Source§impl Default for MonitoringS3Output
impl Default for MonitoringS3Output
Source§fn default() -> MonitoringS3Output
fn default() -> MonitoringS3Output
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MonitoringS3Output
impl<'de> Deserialize<'de> for MonitoringS3Output
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MonitoringS3Output
impl PartialEq for MonitoringS3Output
Source§impl Serialize for MonitoringS3Output
impl Serialize for MonitoringS3Output
impl StructuralPartialEq for MonitoringS3Output
Auto Trait Implementations§
impl Freeze for MonitoringS3Output
impl RefUnwindSafe for MonitoringS3Output
impl Send for MonitoringS3Output
impl Sync for MonitoringS3Output
impl Unpin for MonitoringS3Output
impl UnwindSafe for MonitoringS3Output
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