pub struct MonitoringScheduleSummary {
pub creation_time: f64,
pub endpoint_name: Option<String>,
pub last_modified_time: f64,
pub monitoring_schedule_arn: String,
pub monitoring_schedule_name: String,
pub monitoring_schedule_status: String,
}Expand description
Summarizes the monitoring schedule.
Fields§
§creation_time: f64The creation time of the monitoring schedule.
endpoint_name: Option<String>The name of the endpoint using the monitoring schedule.
last_modified_time: f64The last time the monitoring schedule was modified.
monitoring_schedule_arn: StringThe Amazon Resource Name (ARN) of the monitoring schedule.
monitoring_schedule_name: StringThe name of the monitoring schedule.
monitoring_schedule_status: StringThe status of the monitoring schedule.
Trait Implementations§
Source§impl Clone for MonitoringScheduleSummary
impl Clone for MonitoringScheduleSummary
Source§fn clone(&self) -> MonitoringScheduleSummary
fn clone(&self) -> MonitoringScheduleSummary
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 MonitoringScheduleSummary
impl Debug for MonitoringScheduleSummary
Source§impl Default for MonitoringScheduleSummary
impl Default for MonitoringScheduleSummary
Source§fn default() -> MonitoringScheduleSummary
fn default() -> MonitoringScheduleSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MonitoringScheduleSummary
impl<'de> Deserialize<'de> for MonitoringScheduleSummary
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
impl StructuralPartialEq for MonitoringScheduleSummary
Auto Trait Implementations§
impl Freeze for MonitoringScheduleSummary
impl RefUnwindSafe for MonitoringScheduleSummary
impl Send for MonitoringScheduleSummary
impl Sync for MonitoringScheduleSummary
impl Unpin for MonitoringScheduleSummary
impl UnwindSafe for MonitoringScheduleSummary
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