Struct aws_sdk_codecatalyst::types::DevEnvironmentSummary
source · #[non_exhaustive]pub struct DevEnvironmentSummary { /* private fields */ }
Expand description
Information about a Dev Environment.
Implementations§
source§impl DevEnvironmentSummary
impl DevEnvironmentSummary
sourcepub fn space_name(&self) -> Option<&str>
pub fn space_name(&self) -> Option<&str>
The name of the space.
sourcepub fn project_name(&self) -> Option<&str>
pub fn project_name(&self) -> Option<&str>
The name of the project in the space.
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
The time when the Dev Environment was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.
sourcepub fn creator_id(&self) -> Option<&str>
pub fn creator_id(&self) -> Option<&str>
The system-generated unique ID of the user who created the Dev Environment.
sourcepub fn status(&self) -> Option<&DevEnvironmentStatus>
pub fn status(&self) -> Option<&DevEnvironmentStatus>
The status of the Dev Environment.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The reason for the status.
sourcepub fn repositories(&self) -> Option<&[DevEnvironmentRepositorySummary]>
pub fn repositories(&self) -> Option<&[DevEnvironmentRepositorySummary]>
Information about the repositories that will be cloned into the Dev Environment. If no rvalue is specified, no repository is cloned.
sourcepub fn ides(&self) -> Option<&[Ide]>
pub fn ides(&self) -> Option<&[Ide]>
Information about the integrated development environment (IDE) configured for a Dev Environment.
sourcepub fn instance_type(&self) -> Option<&InstanceType>
pub fn instance_type(&self) -> Option<&InstanceType>
The Amazon EC2 instace type used for the Dev Environment.
sourcepub fn inactivity_timeout_minutes(&self) -> i32
pub fn inactivity_timeout_minutes(&self) -> i32
The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Dev Environments consume compute minutes when running.
sourcepub fn persistent_storage(&self) -> Option<&PersistentStorage>
pub fn persistent_storage(&self) -> Option<&PersistentStorage>
Information about the configuration of persistent storage for the Dev Environment.
source§impl DevEnvironmentSummary
impl DevEnvironmentSummary
sourcepub fn builder() -> DevEnvironmentSummaryBuilder
pub fn builder() -> DevEnvironmentSummaryBuilder
Creates a new builder-style object to manufacture DevEnvironmentSummary
.
Trait Implementations§
source§impl Clone for DevEnvironmentSummary
impl Clone for DevEnvironmentSummary
source§fn clone(&self) -> DevEnvironmentSummary
fn clone(&self) -> DevEnvironmentSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DevEnvironmentSummary
impl Debug for DevEnvironmentSummary
source§impl PartialEq<DevEnvironmentSummary> for DevEnvironmentSummary
impl PartialEq<DevEnvironmentSummary> for DevEnvironmentSummary
source§fn eq(&self, other: &DevEnvironmentSummary) -> bool
fn eq(&self, other: &DevEnvironmentSummary) -> bool
self
and other
values to be equal, and is used
by ==
.