pub struct Update {
pub id: String,
pub status: String,
pub type_: String,
pub params: Vec<(String, String)>,
pub created_at: DateTime<Utc>,
}Expand description
A single control-plane update produced by UpdateClusterConfig or
UpdateClusterVersion. params preserves the (type, value) pairs AWS
reports back so DescribeUpdate round-trips faithfully.
Fields§
§id: String§status: String§type_: String§params: Vec<(String, String)>§created_at: DateTime<Utc>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Update
impl<'de> Deserialize<'de> for Update
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
Auto Trait Implementations§
impl Freeze for Update
impl RefUnwindSafe for Update
impl Send for Update
impl Sync for Update
impl Unpin for Update
impl UnsafeUnpin for Update
impl UnwindSafe for Update
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