Class: Aws::SageMaker::Types::TimeSeriesForecastingSettings

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Time series forecast settings for the SageMaker Canvas application.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#amazon_forecast_role_arnString

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 application. 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.

[1]: docs.aws.amazon.com/sagemaker/latest/dg/security-iam-awsmanpol-canvas.html#security-iam-awsmanpol-AmazonSageMakerCanvasForecastAccess

Returns:

  • (String)


40528
40529
40530
40531
40532
40533
# File 'lib/aws-sdk-sagemaker/types.rb', line 40528

class TimeSeriesForecastingSettings < Struct.new(
  :status,
  :amazon_forecast_role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

Describes whether time series forecasting is enabled or disabled in the Canvas application.

Returns:

  • (String)


40528
40529
40530
40531
40532
40533
# File 'lib/aws-sdk-sagemaker/types.rb', line 40528

class TimeSeriesForecastingSettings < Struct.new(
  :status,
  :amazon_forecast_role_arn)
  SENSITIVE = []
  include Aws::Structure
end