Struct aws_sdk_sagemaker::types::SpaceDetails
source · #[non_exhaustive]pub struct SpaceDetails {
pub domain_id: Option<String>,
pub space_name: Option<String>,
pub status: Option<SpaceStatus>,
pub creation_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
pub space_settings_summary: Option<SpaceSettingsSummary>,
pub space_sharing_settings_summary: Option<SpaceSharingSettingsSummary>,
pub ownership_settings_summary: Option<OwnershipSettingsSummary>,
pub space_display_name: Option<String>,
}
Expand description
The space's details.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_id: Option<String>
The ID of the associated domain.
space_name: Option<String>
The name of the space.
status: Option<SpaceStatus>
The status.
creation_time: Option<DateTime>
The creation time.
last_modified_time: Option<DateTime>
The last modified time.
space_settings_summary: Option<SpaceSettingsSummary>
Specifies summary information about the space settings.
space_sharing_settings_summary: Option<SpaceSharingSettingsSummary>
Specifies summary information about the space sharing settings.
ownership_settings_summary: Option<OwnershipSettingsSummary>
Specifies summary information about the ownership settings.
space_display_name: Option<String>
The name of the space that appears in the Studio UI.
Implementations§
source§impl SpaceDetails
impl SpaceDetails
sourcepub fn space_name(&self) -> Option<&str>
pub fn space_name(&self) -> Option<&str>
The name of the space.
sourcepub fn status(&self) -> Option<&SpaceStatus>
pub fn status(&self) -> Option<&SpaceStatus>
The status.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The creation time.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The last modified time.
sourcepub fn space_settings_summary(&self) -> Option<&SpaceSettingsSummary>
pub fn space_settings_summary(&self) -> Option<&SpaceSettingsSummary>
Specifies summary information about the space settings.
sourcepub fn space_sharing_settings_summary(
&self,
) -> Option<&SpaceSharingSettingsSummary>
pub fn space_sharing_settings_summary( &self, ) -> Option<&SpaceSharingSettingsSummary>
Specifies summary information about the space sharing settings.
sourcepub fn ownership_settings_summary(&self) -> Option<&OwnershipSettingsSummary>
pub fn ownership_settings_summary(&self) -> Option<&OwnershipSettingsSummary>
Specifies summary information about the ownership settings.
sourcepub fn space_display_name(&self) -> Option<&str>
pub fn space_display_name(&self) -> Option<&str>
The name of the space that appears in the Studio UI.
source§impl SpaceDetails
impl SpaceDetails
sourcepub fn builder() -> SpaceDetailsBuilder
pub fn builder() -> SpaceDetailsBuilder
Creates a new builder-style object to manufacture SpaceDetails
.
Trait Implementations§
source§impl Clone for SpaceDetails
impl Clone for SpaceDetails
source§fn clone(&self) -> SpaceDetails
fn clone(&self) -> SpaceDetails
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SpaceDetails
impl Debug for SpaceDetails
source§impl PartialEq for SpaceDetails
impl PartialEq for SpaceDetails
source§fn eq(&self, other: &SpaceDetails) -> bool
fn eq(&self, other: &SpaceDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SpaceDetails
Auto Trait Implementations§
impl Freeze for SpaceDetails
impl RefUnwindSafe for SpaceDetails
impl Send for SpaceDetails
impl Sync for SpaceDetails
impl Unpin for SpaceDetails
impl UnwindSafe for SpaceDetails
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.