Struct aws_sdk_cloud9::operation::describe_environment_status::DescribeEnvironmentStatusOutput
source · #[non_exhaustive]pub struct DescribeEnvironmentStatusOutput {
pub status: EnvironmentStatus,
pub message: String,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.status: EnvironmentStatusThe status of the environment. Available values include:
-
connecting: The environment is connecting. -
creating: The environment is being created. -
deleting: The environment is being deleted. -
error: The environment is in an error state. -
ready: The environment is ready. -
stopped: The environment is stopped. -
stopping: The environment is stopping.
message: StringAny informational message about the status of the environment.
Implementations§
source§impl DescribeEnvironmentStatusOutput
impl DescribeEnvironmentStatusOutput
sourcepub fn status(&self) -> &EnvironmentStatus
pub fn status(&self) -> &EnvironmentStatus
The status of the environment. Available values include:
-
connecting: The environment is connecting. -
creating: The environment is being created. -
deleting: The environment is being deleted. -
error: The environment is in an error state. -
ready: The environment is ready. -
stopped: The environment is stopped. -
stopping: The environment is stopping.
source§impl DescribeEnvironmentStatusOutput
impl DescribeEnvironmentStatusOutput
sourcepub fn builder() -> DescribeEnvironmentStatusOutputBuilder
pub fn builder() -> DescribeEnvironmentStatusOutputBuilder
Creates a new builder-style object to manufacture DescribeEnvironmentStatusOutput.
Trait Implementations§
source§impl Clone for DescribeEnvironmentStatusOutput
impl Clone for DescribeEnvironmentStatusOutput
source§fn clone(&self) -> DescribeEnvironmentStatusOutput
fn clone(&self) -> DescribeEnvironmentStatusOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeEnvironmentStatusOutput
impl PartialEq for DescribeEnvironmentStatusOutput
source§fn eq(&self, other: &DescribeEnvironmentStatusOutput) -> bool
fn eq(&self, other: &DescribeEnvironmentStatusOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeEnvironmentStatusOutput
impl RequestId for DescribeEnvironmentStatusOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DescribeEnvironmentStatusOutput
Auto Trait Implementations§
impl Freeze for DescribeEnvironmentStatusOutput
impl RefUnwindSafe for DescribeEnvironmentStatusOutput
impl Send for DescribeEnvironmentStatusOutput
impl Sync for DescribeEnvironmentStatusOutput
impl Unpin for DescribeEnvironmentStatusOutput
impl UnwindSafe for DescribeEnvironmentStatusOutput
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
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>
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>
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 more