Struct aws_sdk_sagemaker::types::CanvasAppSettings
source · #[non_exhaustive]pub struct CanvasAppSettings {
pub time_series_forecasting_settings: Option<TimeSeriesForecastingSettings>,
pub model_register_settings: Option<ModelRegisterSettings>,
pub workspace_settings: Option<WorkspaceSettings>,
}
Expand description
The SageMaker Canvas application settings.
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.time_series_forecasting_settings: Option<TimeSeriesForecastingSettings>
Time series forecast settings for the Canvas application.
model_register_settings: Option<ModelRegisterSettings>
The model registry settings for the SageMaker Canvas application.
workspace_settings: Option<WorkspaceSettings>
The workspace settings for the SageMaker Canvas application.
Implementations§
source§impl CanvasAppSettings
impl CanvasAppSettings
sourcepub fn time_series_forecasting_settings(
&self
) -> Option<&TimeSeriesForecastingSettings>
pub fn time_series_forecasting_settings( &self ) -> Option<&TimeSeriesForecastingSettings>
Time series forecast settings for the Canvas application.
sourcepub fn model_register_settings(&self) -> Option<&ModelRegisterSettings>
pub fn model_register_settings(&self) -> Option<&ModelRegisterSettings>
The model registry settings for the SageMaker Canvas application.
sourcepub fn workspace_settings(&self) -> Option<&WorkspaceSettings>
pub fn workspace_settings(&self) -> Option<&WorkspaceSettings>
The workspace settings for the SageMaker Canvas application.
source§impl CanvasAppSettings
impl CanvasAppSettings
sourcepub fn builder() -> CanvasAppSettingsBuilder
pub fn builder() -> CanvasAppSettingsBuilder
Creates a new builder-style object to manufacture CanvasAppSettings
.
Trait Implementations§
source§impl Clone for CanvasAppSettings
impl Clone for CanvasAppSettings
source§fn clone(&self) -> CanvasAppSettings
fn clone(&self) -> CanvasAppSettings
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 CanvasAppSettings
impl Debug for CanvasAppSettings
source§impl PartialEq<CanvasAppSettings> for CanvasAppSettings
impl PartialEq<CanvasAppSettings> for CanvasAppSettings
source§fn eq(&self, other: &CanvasAppSettings) -> bool
fn eq(&self, other: &CanvasAppSettings) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CanvasAppSettings
Auto Trait Implementations§
impl RefUnwindSafe for CanvasAppSettings
impl Send for CanvasAppSettings
impl Sync for CanvasAppSettings
impl Unpin for CanvasAppSettings
impl UnwindSafe for CanvasAppSettings
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