pub struct Stack {
pub name: String,
pub stack_id: String,
pub template: String,
pub status: String,
pub resources: Vec<StackResource>,
pub parameters: HashMap<String, String>,
pub tags: HashMap<String, String>,
pub created_at: DateTime<Utc>,
pub updated_at: Option<DateTime<Utc>>,
pub description: Option<String>,
pub notification_arns: Vec<String>,
}Fields§
§name: String§stack_id: String§template: String§status: String§resources: Vec<StackResource>§parameters: HashMap<String, String>§created_at: DateTime<Utc>§updated_at: Option<DateTime<Utc>>§description: Option<String>§notification_arns: Vec<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Stack
impl<'de> Deserialize<'de> for Stack
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 Stack
impl RefUnwindSafe for Stack
impl Send for Stack
impl Sync for Stack
impl Unpin for Stack
impl UnsafeUnpin for Stack
impl UnwindSafe for Stack
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