Class: Aws::ForecastService::Types::InputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::InputDataConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-forecastservice/types.rb
Overview
<note markdown=“1”> This object belongs to the CreatePredictor operation. If you created your predictor with CreateAutoPredictor, see DataConfig.
</note>
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
-
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group.
-
#supplementary_features ⇒ Array<Types::SupplementaryFeature>
An array of supplementary features.
Instance Attribute Details
#dataset_group_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset group.
4593 4594 4595 4596 4597 4598 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 4593 class InputDataConfig < Struct.new( :dataset_group_arn, :supplementary_features) SENSITIVE = [] include Aws::Structure end |
#supplementary_features ⇒ Array<Types::SupplementaryFeature>
An array of supplementary features. The only supported feature is a holiday calendar.
4593 4594 4595 4596 4597 4598 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 4593 class InputDataConfig < Struct.new( :dataset_group_arn, :supplementary_features) SENSITIVE = [] include Aws::Structure end |