pub struct MonitoringScheduleConfig {
pub monitoring_job_definition: MonitoringJobDefinition,
pub schedule_config: Option<ScheduleConfig>,
}
Expand description
Configures the monitoring schedule and defines the monitoring job.
Fields§
§monitoring_job_definition: MonitoringJobDefinition
Defines the monitoring job.
schedule_config: Option<ScheduleConfig>
Configures the monitoring schedule.
Trait Implementations§
Source§impl Clone for MonitoringScheduleConfig
impl Clone for MonitoringScheduleConfig
Source§fn clone(&self) -> MonitoringScheduleConfig
fn clone(&self) -> MonitoringScheduleConfig
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 MonitoringScheduleConfig
impl Debug for MonitoringScheduleConfig
Source§impl Default for MonitoringScheduleConfig
impl Default for MonitoringScheduleConfig
Source§fn default() -> MonitoringScheduleConfig
fn default() -> MonitoringScheduleConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MonitoringScheduleConfig
impl<'de> Deserialize<'de> for MonitoringScheduleConfig
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 MonitoringScheduleConfig
impl PartialEq for MonitoringScheduleConfig
Source§impl Serialize for MonitoringScheduleConfig
impl Serialize for MonitoringScheduleConfig
impl StructuralPartialEq for MonitoringScheduleConfig
Auto Trait Implementations§
impl Freeze for MonitoringScheduleConfig
impl RefUnwindSafe for MonitoringScheduleConfig
impl Send for MonitoringScheduleConfig
impl Sync for MonitoringScheduleConfig
impl Unpin for MonitoringScheduleConfig
impl UnwindSafe for MonitoringScheduleConfig
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