#[non_exhaustive]pub struct TimeSeriesForecastingSettings { /* private fields */ }Expand description
Time series forecast settings for the SageMaker Canvas app.
Implementations
sourceimpl TimeSeriesForecastingSettings
impl TimeSeriesForecastingSettings
sourcepub fn status(&self) -> Option<&FeatureStatus>
pub fn status(&self) -> Option<&FeatureStatus>
Describes whether time series forecasting is enabled or disabled in the Canvas app.
sourcepub fn amazon_forecast_role_arn(&self) -> Option<&str>
pub fn amazon_forecast_role_arn(&self) -> Option<&str>
The IAM role that Canvas passes to Amazon Forecast for time series forecasting. By default, Canvas uses the execution role specified in the UserProfile that launches the Canvas app. If an execution role is not specified in the UserProfile, Canvas uses the execution role specified in the Domain that owns the UserProfile. To allow time series forecasting, this IAM role should have the AmazonSageMakerCanvasForecastAccess policy attached and forecast.amazonaws.com added in the trust relationship as a service principal.
sourceimpl TimeSeriesForecastingSettings
impl TimeSeriesForecastingSettings
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TimeSeriesForecastingSettings.
Trait Implementations
sourceimpl Clone for TimeSeriesForecastingSettings
impl Clone for TimeSeriesForecastingSettings
sourcefn clone(&self) -> TimeSeriesForecastingSettings
fn clone(&self) -> TimeSeriesForecastingSettings
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for TimeSeriesForecastingSettings
impl Debug for TimeSeriesForecastingSettings
sourceimpl PartialEq<TimeSeriesForecastingSettings> for TimeSeriesForecastingSettings
impl PartialEq<TimeSeriesForecastingSettings> for TimeSeriesForecastingSettings
sourcefn eq(&self, other: &TimeSeriesForecastingSettings) -> bool
fn eq(&self, other: &TimeSeriesForecastingSettings) -> bool
impl StructuralPartialEq for TimeSeriesForecastingSettings
Auto Trait Implementations
impl RefUnwindSafe for TimeSeriesForecastingSettings
impl Send for TimeSeriesForecastingSettings
impl Sync for TimeSeriesForecastingSettings
impl Unpin for TimeSeriesForecastingSettings
impl UnwindSafe for TimeSeriesForecastingSettings
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more