Struct aws_sdk_sagemaker::types::StudioWebPortalSettings
source · #[non_exhaustive]pub struct StudioWebPortalSettings {
pub hidden_ml_tools: Option<Vec<MlTools>>,
pub hidden_app_types: Option<Vec<AppType>>,
}
Expand description
Studio settings. If these settings are applied on a user level, they take priority over the settings applied on a domain level.
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.The machine learning tools that are hidden from the Studio left navigation pane.
The Applications supported in Studio that are hidden from the Studio left navigation pane.
Implementations§
source§impl StudioWebPortalSettings
impl StudioWebPortalSettings
The machine learning tools that are hidden from the Studio left navigation pane.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .hidden_ml_tools.is_none()
.
The Applications supported in Studio that are hidden from the Studio left navigation pane.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .hidden_app_types.is_none()
.
source§impl StudioWebPortalSettings
impl StudioWebPortalSettings
sourcepub fn builder() -> StudioWebPortalSettingsBuilder
pub fn builder() -> StudioWebPortalSettingsBuilder
Creates a new builder-style object to manufacture StudioWebPortalSettings
.
Trait Implementations§
source§impl Clone for StudioWebPortalSettings
impl Clone for StudioWebPortalSettings
source§fn clone(&self) -> StudioWebPortalSettings
fn clone(&self) -> StudioWebPortalSettings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StudioWebPortalSettings
impl Debug for StudioWebPortalSettings
source§impl PartialEq for StudioWebPortalSettings
impl PartialEq for StudioWebPortalSettings
impl StructuralPartialEq for StudioWebPortalSettings
Auto Trait Implementations§
impl Freeze for StudioWebPortalSettings
impl RefUnwindSafe for StudioWebPortalSettings
impl Send for StudioWebPortalSettings
impl Sync for StudioWebPortalSettings
impl Unpin for StudioWebPortalSettings
impl UnwindSafe for StudioWebPortalSettings
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