pub struct StackView {Show 21 fields
pub stack_id: String,
pub stack_name: String,
pub stack_status: String,
pub creation_time: String,
pub last_updated_time: Option<String>,
pub deletion_time: Option<String>,
pub description: Option<String>,
pub template_body: Option<String>,
pub stack_policy_body: Option<String>,
pub parameters: Vec<StackParameter>,
pub outputs: Vec<StackOutput>,
pub tags: Vec<StackTag>,
pub capabilities: Vec<String>,
pub resources: Vec<StackResource>,
pub events: Vec<StackEvent>,
pub change_sets: Vec<ChangeSet>,
pub exports: Vec<StackExport>,
pub role_arn: Option<String>,
pub timeout_in_minutes: Option<i32>,
pub disable_rollback: bool,
pub enable_termination_protection: bool,
}Fields§
§stack_id: String§stack_name: String§stack_status: String§creation_time: String§last_updated_time: Option<String>§deletion_time: Option<String>§description: Option<String>§template_body: Option<String>§stack_policy_body: Option<String>§parameters: Vec<StackParameter>§outputs: Vec<StackOutput>§capabilities: Vec<String>§resources: Vec<StackResource>§events: Vec<StackEvent>§change_sets: Vec<ChangeSet>§exports: Vec<StackExport>§role_arn: Option<String>§timeout_in_minutes: Option<i32>§disable_rollback: bool§enable_termination_protection: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for StackView
impl<'de> Deserialize<'de> for StackView
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 StackView
impl RefUnwindSafe for StackView
impl Send for StackView
impl Sync for StackView
impl Unpin for StackView
impl UnsafeUnpin for StackView
impl UnwindSafe for StackView
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.