#[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 Amazon SageMaker 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 Amazon SageMaker Studio Lifecycle Configuration.
creation_time: Option<DateTime>
The creation time of the Amazon SageMaker Studio Lifecycle Configuration.
last_modified_time: Option<DateTime>
This value is equivalent to CreationTime because Amazon SageMaker 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 Amazon SageMaker Studio Lifecycle Configuration.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The creation time of the Amazon SageMaker 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 Amazon SageMaker 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 for StudioLifecycleConfigDetails
impl PartialEq 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 ==
.impl StructuralPartialEq for StudioLifecycleConfigDetails
Auto Trait Implementations§
impl Freeze for StudioLifecycleConfigDetails
impl RefUnwindSafe for StudioLifecycleConfigDetails
impl Send for StudioLifecycleConfigDetails
impl Sync for StudioLifecycleConfigDetails
impl Unpin for StudioLifecycleConfigDetails
impl UnwindSafe for StudioLifecycleConfigDetails
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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