pub struct ModifyClusterSnapshotScheduleMessage {
pub cluster_identifier: String,
pub disassociate_schedule: Option<bool>,
pub schedule_identifier: Option<String>,
}
Fields§
§cluster_identifier: String
A unique identifier for the cluster whose snapshot schedule you want to modify.
disassociate_schedule: Option<bool>
A boolean to indicate whether to remove the assoiciation between the cluster and the schedule.
schedule_identifier: Option<String>
A unique alphanumeric identifier for the schedule that you want to associate with the cluster.
Trait Implementations§
Source§impl Clone for ModifyClusterSnapshotScheduleMessage
impl Clone for ModifyClusterSnapshotScheduleMessage
Source§fn clone(&self) -> ModifyClusterSnapshotScheduleMessage
fn clone(&self) -> ModifyClusterSnapshotScheduleMessage
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 ModifyClusterSnapshotScheduleMessage
impl Default for ModifyClusterSnapshotScheduleMessage
Source§fn default() -> ModifyClusterSnapshotScheduleMessage
fn default() -> ModifyClusterSnapshotScheduleMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyClusterSnapshotScheduleMessage
impl PartialEq for ModifyClusterSnapshotScheduleMessage
Source§fn eq(&self, other: &ModifyClusterSnapshotScheduleMessage) -> bool
fn eq(&self, other: &ModifyClusterSnapshotScheduleMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyClusterSnapshotScheduleMessage
Auto Trait Implementations§
impl Freeze for ModifyClusterSnapshotScheduleMessage
impl RefUnwindSafe for ModifyClusterSnapshotScheduleMessage
impl Send for ModifyClusterSnapshotScheduleMessage
impl Sync for ModifyClusterSnapshotScheduleMessage
impl Unpin for ModifyClusterSnapshotScheduleMessage
impl UnwindSafe for ModifyClusterSnapshotScheduleMessage
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