pub struct MonitoringExecutionSummary {
pub creation_time: f64,
pub endpoint_name: Option<String>,
pub failure_reason: Option<String>,
pub last_modified_time: f64,
pub monitoring_execution_status: String,
pub monitoring_schedule_name: String,
pub processing_job_arn: Option<String>,
pub scheduled_time: f64,
}
Expand description
Summary of information about the last monitoring job to run.
Fields§
§creation_time: f64
The time at which the monitoring job was created.
endpoint_name: Option<String>
The name of teh endpoint used to run the monitoring job.
failure_reason: Option<String>
Contains the reason a monitoring job failed, if it failed.
last_modified_time: f64
A timestamp that indicates the last time the monitoring job was modified.
monitoring_execution_status: String
The status of the monitoring job.
monitoring_schedule_name: String
The name of the monitoring schedule.
processing_job_arn: Option<String>
The Amazon Resource Name (ARN) of the monitoring job.
scheduled_time: f64
The time the monitoring job was scheduled.
Trait Implementations§
Source§impl Clone for MonitoringExecutionSummary
impl Clone for MonitoringExecutionSummary
Source§fn clone(&self) -> MonitoringExecutionSummary
fn clone(&self) -> MonitoringExecutionSummary
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 MonitoringExecutionSummary
impl Debug for MonitoringExecutionSummary
Source§impl Default for MonitoringExecutionSummary
impl Default for MonitoringExecutionSummary
Source§fn default() -> MonitoringExecutionSummary
fn default() -> MonitoringExecutionSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MonitoringExecutionSummary
impl<'de> Deserialize<'de> for MonitoringExecutionSummary
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 MonitoringExecutionSummary
Auto Trait Implementations§
impl Freeze for MonitoringExecutionSummary
impl RefUnwindSafe for MonitoringExecutionSummary
impl Send for MonitoringExecutionSummary
impl Sync for MonitoringExecutionSummary
impl Unpin for MonitoringExecutionSummary
impl UnwindSafe for MonitoringExecutionSummary
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