Struct aws_sdk_datazone::types::EnvironmentSummary
source · #[non_exhaustive]pub struct EnvironmentSummary {Show 13 fields
pub project_id: Option<String>,
pub id: Option<String>,
pub domain_id: Option<String>,
pub created_by: Option<String>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
pub name: Option<String>,
pub description: Option<String>,
pub environment_profile_id: Option<String>,
pub aws_account_id: Option<String>,
pub aws_account_region: Option<String>,
pub provider: Option<String>,
pub status: Option<EnvironmentStatus>,
}
Expand description
The details of an environment.
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.project_id: Option<String>
The identifier of the project in which the environment exists.
id: Option<String>
The identifier of the environment.
domain_id: Option<String>
The identifier of the Amazon DataZone domain in which the environment exists.
created_by: Option<String>
The Amazon DataZone user who created the environment.
created_at: Option<DateTime>
The timestamp of when the environment was created.
updated_at: Option<DateTime>
The timestamp of when the environment was updated.
name: Option<String>
The name of the environment.
description: Option<String>
The description of the environment.
environment_profile_id: Option<String>
The identifier of the environment profile with which the environment was created.
aws_account_id: Option<String>
The identifier of the Amazon Web Services account in which an environment exists.
aws_account_region: Option<String>
The Amazon Web Services Region in which an environment exists.
provider: Option<String>
The provider of the environment.
status: Option<EnvironmentStatus>
The status of the environment.
Implementations§
source§impl EnvironmentSummary
impl EnvironmentSummary
sourcepub fn project_id(&self) -> Option<&str>
pub fn project_id(&self) -> Option<&str>
The identifier of the project in which the environment exists.
sourcepub fn domain_id(&self) -> Option<&str>
pub fn domain_id(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which the environment exists.
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
The Amazon DataZone user who created the environment.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when the environment was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when the environment was updated.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the environment.
sourcepub fn environment_profile_id(&self) -> Option<&str>
pub fn environment_profile_id(&self) -> Option<&str>
The identifier of the environment profile with which the environment was created.
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The identifier of the Amazon Web Services account in which an environment exists.
sourcepub fn aws_account_region(&self) -> Option<&str>
pub fn aws_account_region(&self) -> Option<&str>
The Amazon Web Services Region in which an environment exists.
sourcepub fn status(&self) -> Option<&EnvironmentStatus>
pub fn status(&self) -> Option<&EnvironmentStatus>
The status of the environment.
source§impl EnvironmentSummary
impl EnvironmentSummary
sourcepub fn builder() -> EnvironmentSummaryBuilder
pub fn builder() -> EnvironmentSummaryBuilder
Creates a new builder-style object to manufacture EnvironmentSummary
.
Trait Implementations§
source§impl Clone for EnvironmentSummary
impl Clone for EnvironmentSummary
source§fn clone(&self) -> EnvironmentSummary
fn clone(&self) -> EnvironmentSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EnvironmentSummary
impl Debug for EnvironmentSummary
source§impl PartialEq for EnvironmentSummary
impl PartialEq for EnvironmentSummary
source§fn eq(&self, other: &EnvironmentSummary) -> bool
fn eq(&self, other: &EnvironmentSummary) -> bool
self
and other
values to be equal, and is used
by ==
.