#[non_exhaustive]pub struct StudioLifecycleConfigDetails {
pub studio_lifecycle_config_arn: Option<String>,
pub studio_lifecycle_config_name: Option<String>,
pub creation_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
pub studio_lifecycle_config_app_type: Option<StudioLifecycleConfigAppType>,
}
Expand description
Details of the Studio Lifecycle Configuration.
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.studio_lifecycle_config_arn: Option<String>
The Amazon Resource Name (ARN) of the Lifecycle Configuration.
studio_lifecycle_config_name: Option<String>
The name of the Studio Lifecycle Configuration.
creation_time: Option<DateTime>
The creation time of the Studio Lifecycle Configuration.
last_modified_time: Option<DateTime>
This value is equivalent to CreationTime because Studio Lifecycle Configurations are immutable.
studio_lifecycle_config_app_type: Option<StudioLifecycleConfigAppType>
The App type to which the Lifecycle Configuration is attached.
Implementations§
source§impl StudioLifecycleConfigDetails
impl StudioLifecycleConfigDetails
sourcepub fn studio_lifecycle_config_arn(&self) -> Option<&str>
pub fn studio_lifecycle_config_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Lifecycle Configuration.
sourcepub fn studio_lifecycle_config_name(&self) -> Option<&str>
pub fn studio_lifecycle_config_name(&self) -> Option<&str>
The name of the Studio Lifecycle Configuration.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The creation time of the Studio Lifecycle Configuration.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
This value is equivalent to CreationTime because Studio Lifecycle Configurations are immutable.
sourcepub fn studio_lifecycle_config_app_type(
&self
) -> Option<&StudioLifecycleConfigAppType>
pub fn studio_lifecycle_config_app_type( &self ) -> Option<&StudioLifecycleConfigAppType>
The App type to which the Lifecycle Configuration is attached.
source§impl StudioLifecycleConfigDetails
impl StudioLifecycleConfigDetails
sourcepub fn builder() -> StudioLifecycleConfigDetailsBuilder
pub fn builder() -> StudioLifecycleConfigDetailsBuilder
Creates a new builder-style object to manufacture StudioLifecycleConfigDetails
.
Trait Implementations§
source§impl Clone for StudioLifecycleConfigDetails
impl Clone for StudioLifecycleConfigDetails
source§fn clone(&self) -> StudioLifecycleConfigDetails
fn clone(&self) -> StudioLifecycleConfigDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StudioLifecycleConfigDetails
impl Debug for StudioLifecycleConfigDetails
source§impl PartialEq<StudioLifecycleConfigDetails> for StudioLifecycleConfigDetails
impl PartialEq<StudioLifecycleConfigDetails> for StudioLifecycleConfigDetails
source§fn eq(&self, other: &StudioLifecycleConfigDetails) -> bool
fn eq(&self, other: &StudioLifecycleConfigDetails) -> bool
self
and other
values to be equal, and is used
by ==
.