pub struct ModifySnapshotScheduleMessage {
pub schedule_definitions: Vec<String>,
pub schedule_identifier: String,
}
Fields§
§schedule_definitions: Vec<String>
An updated list of schedule definitions. A schedule definition is made up of schedule expressions, for example, "cron(30 12 *)" or "rate(12 hours)".
schedule_identifier: String
A unique alphanumeric identifier of the schedule to modify.
Trait Implementations§
Source§impl Clone for ModifySnapshotScheduleMessage
impl Clone for ModifySnapshotScheduleMessage
Source§fn clone(&self) -> ModifySnapshotScheduleMessage
fn clone(&self) -> ModifySnapshotScheduleMessage
Returns a copy 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 ModifySnapshotScheduleMessage
impl Default for ModifySnapshotScheduleMessage
Source§fn default() -> ModifySnapshotScheduleMessage
fn default() -> ModifySnapshotScheduleMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifySnapshotScheduleMessage
impl PartialEq for ModifySnapshotScheduleMessage
Source§fn eq(&self, other: &ModifySnapshotScheduleMessage) -> bool
fn eq(&self, other: &ModifySnapshotScheduleMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifySnapshotScheduleMessage
Auto Trait Implementations§
impl Freeze for ModifySnapshotScheduleMessage
impl RefUnwindSafe for ModifySnapshotScheduleMessage
impl Send for ModifySnapshotScheduleMessage
impl Sync for ModifySnapshotScheduleMessage
impl Unpin for ModifySnapshotScheduleMessage
impl UnwindSafe for ModifySnapshotScheduleMessage
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