pub struct ListMonitoringSchedulesResponse {
pub monitoring_schedule_summaries: Vec<MonitoringScheduleSummary>,
pub next_token: Option<String>,
}Fields§
§monitoring_schedule_summaries: Vec<MonitoringScheduleSummary>A JSON array in which each element is a summary for a monitoring schedule.
next_token: Option<String>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of jobs, use it in the subsequent reques
Trait Implementations§
Source§impl Clone for ListMonitoringSchedulesResponse
impl Clone for ListMonitoringSchedulesResponse
Source§fn clone(&self) -> ListMonitoringSchedulesResponse
fn clone(&self) -> ListMonitoringSchedulesResponse
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 Default for ListMonitoringSchedulesResponse
impl Default for ListMonitoringSchedulesResponse
Source§fn default() -> ListMonitoringSchedulesResponse
fn default() -> ListMonitoringSchedulesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListMonitoringSchedulesResponse
impl<'de> Deserialize<'de> for ListMonitoringSchedulesResponse
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 ListMonitoringSchedulesResponse
impl PartialEq for ListMonitoringSchedulesResponse
Source§fn eq(&self, other: &ListMonitoringSchedulesResponse) -> bool
fn eq(&self, other: &ListMonitoringSchedulesResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListMonitoringSchedulesResponse
Auto Trait Implementations§
impl Freeze for ListMonitoringSchedulesResponse
impl RefUnwindSafe for ListMonitoringSchedulesResponse
impl Send for ListMonitoringSchedulesResponse
impl Sync for ListMonitoringSchedulesResponse
impl Unpin for ListMonitoringSchedulesResponse
impl UnwindSafe for ListMonitoringSchedulesResponse
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