Class: Aws::ForecastService::Types::InputDataConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb

Overview

This object belongs to the CreatePredictor operation. If you created your predictor with CreateAutoPredictor, see DataConfig.

The data used to train a predictor. The data includes a dataset group and any supplementary features. You specify this object in the CreatePredictor request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dataset_group_arnString

The Amazon Resource Name (ARN) of the dataset group.

Returns:

  • (String)


4593
4594
4595
4596
4597
4598
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4593

class InputDataConfig < Struct.new(
  :dataset_group_arn,
  :supplementary_features)
  SENSITIVE = []
  include Aws::Structure
end

#supplementary_featuresArray<Types::SupplementaryFeature>

An array of supplementary features. The only supported feature is a holiday calendar.

Returns:



4593
4594
4595
4596
4597
4598
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4593

class InputDataConfig < Struct.new(
  :dataset_group_arn,
  :supplementary_features)
  SENSITIVE = []
  include Aws::Structure
end