Struct aws_sdk_migrationhubrefactorspaces::operation::create_environment::CreateEnvironmentOutput
source · #[non_exhaustive]pub struct CreateEnvironmentOutput {
pub name: Option<String>,
pub arn: Option<String>,
pub description: Option<String>,
pub environment_id: Option<String>,
pub network_fabric_type: Option<NetworkFabricType>,
pub owner_account_id: Option<String>,
pub state: Option<EnvironmentState>,
pub tags: Option<HashMap<String, String>>,
pub last_updated_time: Option<DateTime>,
pub created_time: Option<DateTime>,
/* 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.name: Option<String>The name of the environment.
arn: Option<String>The Amazon Resource Name (ARN) of the environment.
description: Option<String>A description of the environment.
environment_id: Option<String>The unique identifier of the environment.
network_fabric_type: Option<NetworkFabricType>The network fabric type of the environment.
owner_account_id: Option<String>The Amazon Web Services account ID of environment owner.
state: Option<EnvironmentState>The current state of the environment.
The tags assigned to the created environment. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair..
last_updated_time: Option<DateTime>A timestamp that indicates when the environment was last updated.
created_time: Option<DateTime>A timestamp that indicates when the environment is created.
Implementations§
source§impl CreateEnvironmentOutput
impl CreateEnvironmentOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the environment.
sourcepub fn environment_id(&self) -> Option<&str>
pub fn environment_id(&self) -> Option<&str>
The unique identifier of the environment.
sourcepub fn network_fabric_type(&self) -> Option<&NetworkFabricType>
pub fn network_fabric_type(&self) -> Option<&NetworkFabricType>
The network fabric type of the environment.
sourcepub fn owner_account_id(&self) -> Option<&str>
pub fn owner_account_id(&self) -> Option<&str>
The Amazon Web Services account ID of environment owner.
sourcepub fn state(&self) -> Option<&EnvironmentState>
pub fn state(&self) -> Option<&EnvironmentState>
The current state of the environment.
The tags assigned to the created environment. A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key-value pair..
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
A timestamp that indicates when the environment was last updated.
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
A timestamp that indicates when the environment is created.
source§impl CreateEnvironmentOutput
impl CreateEnvironmentOutput
sourcepub fn builder() -> CreateEnvironmentOutputBuilder
pub fn builder() -> CreateEnvironmentOutputBuilder
Creates a new builder-style object to manufacture CreateEnvironmentOutput.
Trait Implementations§
source§impl Clone for CreateEnvironmentOutput
impl Clone for CreateEnvironmentOutput
source§fn clone(&self) -> CreateEnvironmentOutput
fn clone(&self) -> CreateEnvironmentOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateEnvironmentOutput
impl Debug for CreateEnvironmentOutput
source§impl PartialEq for CreateEnvironmentOutput
impl PartialEq for CreateEnvironmentOutput
source§fn eq(&self, other: &CreateEnvironmentOutput) -> bool
fn eq(&self, other: &CreateEnvironmentOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateEnvironmentOutput
impl RequestId for CreateEnvironmentOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for CreateEnvironmentOutput
Auto Trait Implementations§
impl Freeze for CreateEnvironmentOutput
impl RefUnwindSafe for CreateEnvironmentOutput
impl Send for CreateEnvironmentOutput
impl Sync for CreateEnvironmentOutput
impl Unpin for CreateEnvironmentOutput
impl UnwindSafe for CreateEnvironmentOutput
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