Class: Aws::ForecastService::Types::InputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::InputDataConfig
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Note:
When making an API call, you may pass InputDataConfig data as a hash:
{
dataset_group_arn: "Arn", # required
supplementary_features: [
{
name: "Name", # required
value: "Value", # required
},
],
}
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.
4676 4677 4678 4679 4680 4681 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4676 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.
4676 4677 4678 4679 4680 4681 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 4676 class InputDataConfig < Struct.new( :dataset_group_arn, :supplementary_features) SENSITIVE = [] include Aws::Structure end |