Class: Aws::ForecastService::Types::DataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::DataConfig
- Defined in:
- gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb
Overview
Note:
When making an API call, you may pass DataConfig data as a hash:
{
dataset_group_arn: "Arn", # required
attribute_configs: [
{
attribute_name: "Name", # required
transformations: { # required
"Name" => "Value",
},
},
],
additional_datasets: [
{
name: "Name", # required
configuration: {
"Name" => ["Value"],
},
},
],
}
The data configuration for your dataset group and any additional datasets.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#additional_datasets ⇒ Array<Types::AdditionalDataset>
Additional built-in datasets like Holidays and the Weather Index.
-
#attribute_configs ⇒ Array<Types::AttributeConfig>
Aggregation and filling options for attributes in your dataset group.
-
#dataset_group_arn ⇒ String
The ARN of the dataset group used to train the predictor.
Instance Attribute Details
#additional_datasets ⇒ Array<Types::AdditionalDataset>
Additional built-in datasets like Holidays and the Weather Index.
2005 2006 2007 2008 2009 2010 2011 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 2005 class DataConfig < Struct.new( :dataset_group_arn, :attribute_configs, :additional_datasets) SENSITIVE = [] include Aws::Structure end |
#attribute_configs ⇒ Array<Types::AttributeConfig>
Aggregation and filling options for attributes in your dataset group.
2005 2006 2007 2008 2009 2010 2011 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 2005 class DataConfig < Struct.new( :dataset_group_arn, :attribute_configs, :additional_datasets) SENSITIVE = [] include Aws::Structure end |
#dataset_group_arn ⇒ String
The ARN of the dataset group used to train the predictor.
2005 2006 2007 2008 2009 2010 2011 |
# File 'gems/aws-sdk-forecastservice/lib/aws-sdk-forecastservice/types.rb', line 2005 class DataConfig < Struct.new( :dataset_group_arn, :attribute_configs, :additional_datasets) SENSITIVE = [] include Aws::Structure end |