pub struct DescribeMonitoringScheduleResponse {
pub creation_time: f64,
pub endpoint_name: Option<String>,
pub failure_reason: Option<String>,
pub last_modified_time: f64,
pub last_monitoring_execution_summary: Option<MonitoringExecutionSummary>,
pub monitoring_schedule_arn: String,
pub monitoring_schedule_config: MonitoringScheduleConfig,
pub monitoring_schedule_name: String,
pub monitoring_schedule_status: String,
}Fields§
§creation_time: f64The time at which the monitoring job was created.
endpoint_name: Option<String>The name of the endpoint for the monitoring job.
failure_reason: Option<String>A string, up to one KB in size, that contains the reason a monitoring job failed, if it failed.
last_modified_time: f64The time at which the monitoring job was last modified.
last_monitoring_execution_summary: Option<MonitoringExecutionSummary>Describes metadata on the last execution to run, if there was one.
monitoring_schedule_arn: StringThe Amazon Resource Name (ARN) of the monitoring schedule.
monitoring_schedule_config: MonitoringScheduleConfigThe configuration object that specifies the monitoring schedule and defines the monitoring job.
monitoring_schedule_name: StringName of the monitoring schedule.
monitoring_schedule_status: StringThe status of an monitoring job.
Trait Implementations§
Source§impl Clone for DescribeMonitoringScheduleResponse
impl Clone for DescribeMonitoringScheduleResponse
Source§fn clone(&self) -> DescribeMonitoringScheduleResponse
fn clone(&self) -> DescribeMonitoringScheduleResponse
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 DescribeMonitoringScheduleResponse
impl Default for DescribeMonitoringScheduleResponse
Source§fn default() -> DescribeMonitoringScheduleResponse
fn default() -> DescribeMonitoringScheduleResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeMonitoringScheduleResponse
impl<'de> Deserialize<'de> for DescribeMonitoringScheduleResponse
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 DescribeMonitoringScheduleResponse
impl PartialEq for DescribeMonitoringScheduleResponse
Source§fn eq(&self, other: &DescribeMonitoringScheduleResponse) -> bool
fn eq(&self, other: &DescribeMonitoringScheduleResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeMonitoringScheduleResponse
Auto Trait Implementations§
impl Freeze for DescribeMonitoringScheduleResponse
impl RefUnwindSafe for DescribeMonitoringScheduleResponse
impl Send for DescribeMonitoringScheduleResponse
impl Sync for DescribeMonitoringScheduleResponse
impl Unpin for DescribeMonitoringScheduleResponse
impl UnwindSafe for DescribeMonitoringScheduleResponse
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