Class: Aws::ForecastService::Types::SchemaAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::ForecastService::Types::SchemaAttribute
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-forecastservice/types.rb
Overview
An attribute of a schema, which defines a dataset field. A schema attribute is required for every field in a dataset. The [Schema] object contains an array of ‘SchemaAttribute` objects.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_name ⇒ String
The name of the dataset field.
-
#attribute_type ⇒ String
The data type of the field.
Instance Attribute Details
#attribute_name ⇒ String
The name of the dataset field.
6256 6257 6258 6259 6260 6261 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 6256 class SchemaAttribute < Struct.new( :attribute_name, :attribute_type) SENSITIVE = [] include Aws::Structure end |
#attribute_type ⇒ String
The data type of the field.
For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).
6256 6257 6258 6259 6260 6261 |
# File 'lib/aws-sdk-forecastservice/types.rb', line 6256 class SchemaAttribute < Struct.new( :attribute_name, :attribute_type) SENSITIVE = [] include Aws::Structure end |