pub struct ProcessedUpdateAction {
pub cache_cluster_id: Option<String>,
pub replication_group_id: Option<String>,
pub service_update_name: Option<String>,
pub update_action_status: Option<String>,
}
Expand description
Update action that has been processed for the corresponding apply/stop request
Fields§
§cache_cluster_id: Option<String>
The ID of the cache cluster
replication_group_id: Option<String>
The ID of the replication group
service_update_name: Option<String>
The unique ID of the service update
update_action_status: Option<String>
The status of the update action on the Redis cluster
Trait Implementations§
Source§impl Clone for ProcessedUpdateAction
impl Clone for ProcessedUpdateAction
Source§fn clone(&self) -> ProcessedUpdateAction
fn clone(&self) -> ProcessedUpdateAction
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 ProcessedUpdateAction
impl Debug for ProcessedUpdateAction
Source§impl Default for ProcessedUpdateAction
impl Default for ProcessedUpdateAction
Source§fn default() -> ProcessedUpdateAction
fn default() -> ProcessedUpdateAction
Returns the “default value” for a type. Read more
Source§impl PartialEq for ProcessedUpdateAction
impl PartialEq for ProcessedUpdateAction
impl StructuralPartialEq for ProcessedUpdateAction
Auto Trait Implementations§
impl Freeze for ProcessedUpdateAction
impl RefUnwindSafe for ProcessedUpdateAction
impl Send for ProcessedUpdateAction
impl Sync for ProcessedUpdateAction
impl Unpin for ProcessedUpdateAction
impl UnwindSafe for ProcessedUpdateAction
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