pub struct UnprocessedUpdateAction {
pub cache_cluster_id: Option<String>,
pub error_message: Option<String>,
pub error_type: Option<String>,
pub replication_group_id: Option<String>,
pub service_update_name: Option<String>,
}
Expand description
Update action that has failed to be processed for the corresponding apply/stop request
Fields§
§cache_cluster_id: Option<String>
The ID of the cache cluster
error_message: Option<String>
The error message that describes the reason the request was not processed
error_type: Option<String>
The error type for requests that are not processed
replication_group_id: Option<String>
The replication group ID
service_update_name: Option<String>
The unique ID of the service update
Trait Implementations§
Source§impl Clone for UnprocessedUpdateAction
impl Clone for UnprocessedUpdateAction
Source§fn clone(&self) -> UnprocessedUpdateAction
fn clone(&self) -> UnprocessedUpdateAction
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 Debug for UnprocessedUpdateAction
impl Debug for UnprocessedUpdateAction
Source§impl Default for UnprocessedUpdateAction
impl Default for UnprocessedUpdateAction
Source§fn default() -> UnprocessedUpdateAction
fn default() -> UnprocessedUpdateAction
Returns the “default value” for a type. Read more
Source§impl PartialEq for UnprocessedUpdateAction
impl PartialEq for UnprocessedUpdateAction
impl StructuralPartialEq for UnprocessedUpdateAction
Auto Trait Implementations§
impl Freeze for UnprocessedUpdateAction
impl RefUnwindSafe for UnprocessedUpdateAction
impl Send for UnprocessedUpdateAction
impl Sync for UnprocessedUpdateAction
impl Unpin for UnprocessedUpdateAction
impl UnwindSafe for UnprocessedUpdateAction
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