pub struct EnvironmentLifecycle {
pub failure_resource: Option<String>,
pub reason: Option<String>,
pub status: Option<String>,
}Expand description
Information about the current creation or deletion lifecycle state of an AWS Cloud9 development environment.
Fields§
§failure_resource: Option<String>If the environment failed to delete, the Amazon Resource Name (ARN) of the related AWS resource.
reason: Option<String>Any informational message about the lifecycle state of the environment.
status: Option<String>The current creation or deletion lifecycle state of the environment.
-
CREATING: The environment is in the process of being created. -
CREATED: The environment was successfully created. -
CREATEFAILED: The environment failed to be created. -
DELETING: The environment is in the process of being deleted. -
DELETEFAILED: The environment failed to delete.
Trait Implementations§
Source§impl Clone for EnvironmentLifecycle
impl Clone for EnvironmentLifecycle
Source§fn clone(&self) -> EnvironmentLifecycle
fn clone(&self) -> EnvironmentLifecycle
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 EnvironmentLifecycle
impl Debug for EnvironmentLifecycle
Source§impl Default for EnvironmentLifecycle
impl Default for EnvironmentLifecycle
Source§fn default() -> EnvironmentLifecycle
fn default() -> EnvironmentLifecycle
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EnvironmentLifecycle
impl<'de> Deserialize<'de> for EnvironmentLifecycle
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
Source§impl PartialEq for EnvironmentLifecycle
impl PartialEq for EnvironmentLifecycle
impl StructuralPartialEq for EnvironmentLifecycle
Auto Trait Implementations§
impl Freeze for EnvironmentLifecycle
impl RefUnwindSafe for EnvironmentLifecycle
impl Send for EnvironmentLifecycle
impl Sync for EnvironmentLifecycle
impl Unpin for EnvironmentLifecycle
impl UnwindSafe for EnvironmentLifecycle
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