Class: Aws::LexModelsV2::Types::AnalyticsBinBySpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::AnalyticsBinBySpecification
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Contains the time metric, interval, and method by which to bin the analytics data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#interval ⇒ String
Specifies the interval of time by which to bin the analytics data.
-
#name ⇒ String
Specifies the time metric by which to bin the analytics data.
-
#order ⇒ String
Specifies whether to bin the analytics data in ascending or descending order.
Instance Attribute Details
#interval ⇒ String
Specifies the interval of time by which to bin the analytics data.
232 233 234 235 236 237 238 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 232 class AnalyticsBinBySpecification < Struct.new( :name, :interval, :order) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Specifies the time metric by which to bin the analytics data.
232 233 234 235 236 237 238 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 232 class AnalyticsBinBySpecification < Struct.new( :name, :interval, :order) SENSITIVE = [] include Aws::Structure end |
#order ⇒ String
Specifies whether to bin the analytics data in ascending or descending order. If this field is left blank, the default order is by the key of the bin in descending order.
232 233 234 235 236 237 238 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 232 class AnalyticsBinBySpecification < Struct.new( :name, :interval, :order) SENSITIVE = [] include Aws::Structure end |