Class: Aws::LexModelsV2::Types::ListUtteranceMetricsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::ListUtteranceMetricsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Types::AnalyticsUtteranceAttribute>
A list containing attributes related to the utterance that you want the response to return.
-
#bin_by ⇒ Array<Types::AnalyticsBinBySpecification>
A list of objects, each of which contains specifications for organizing the results by time.
-
#bot_id ⇒ String
The identifier for the bot for which you want to retrieve utterance metrics.
-
#end_date_time ⇒ Time
The date and time that marks the end of the range of time for which you want to see utterance metrics.
-
#filters ⇒ Array<Types::AnalyticsUtteranceFilter>
A list of objects, each of which describes a condition by which you want to filter the results.
-
#group_by ⇒ Array<Types::AnalyticsUtteranceGroupBySpecification>
A list of objects, each of which specifies how to group the results.
-
#max_results ⇒ Integer
The maximum number of results to return in each page of results.
-
#metrics ⇒ Array<Types::AnalyticsUtteranceMetric>
A list of objects, each of which contains a metric you want to list, the statistic for the metric you want to return, and the method by which to organize the results.
-
#next_token ⇒ String
If the response from the ListUtteranceMetrics operation contains more results than specified in the maxResults parameter, a token is returned in the response.
-
#start_date_time ⇒ Time
The date and time that marks the beginning of the range of time for which you want to see utterance metrics.
Instance Attribute Details
#attributes ⇒ Array<Types::AnalyticsUtteranceAttribute>
A list containing attributes related to the utterance that you want the response to return. The following attributes are possible:
-
‘LastUsedIntent` – The last used intent at the time of the utterance.
^
11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11210 class ListUtteranceMetricsRequest < Struct.new( :bot_id, :start_date_time, :end_date_time, :metrics, :bin_by, :group_by, :attributes, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#bin_by ⇒ Array<Types::AnalyticsBinBySpecification>
A list of objects, each of which contains specifications for organizing the results by time.
11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11210 class ListUtteranceMetricsRequest < Struct.new( :bot_id, :start_date_time, :end_date_time, :metrics, :bin_by, :group_by, :attributes, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#bot_id ⇒ String
The identifier for the bot for which you want to retrieve utterance metrics.
11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11210 class ListUtteranceMetricsRequest < Struct.new( :bot_id, :start_date_time, :end_date_time, :metrics, :bin_by, :group_by, :attributes, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#end_date_time ⇒ Time
The date and time that marks the end of the range of time for which you want to see utterance metrics.
11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11210 class ListUtteranceMetricsRequest < Struct.new( :bot_id, :start_date_time, :end_date_time, :metrics, :bin_by, :group_by, :attributes, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#filters ⇒ Array<Types::AnalyticsUtteranceFilter>
A list of objects, each of which describes a condition by which you want to filter the results.
11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11210 class ListUtteranceMetricsRequest < Struct.new( :bot_id, :start_date_time, :end_date_time, :metrics, :bin_by, :group_by, :attributes, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#group_by ⇒ Array<Types::AnalyticsUtteranceGroupBySpecification>
A list of objects, each of which specifies how to group the results. You can group by the following criteria:
-
‘UtteranceText` – The transcription of the utterance.
-
‘UtteranceState` – The state of the utterance. The possible states are detailed in [Key definitions] in the user guide.
[1]: docs.aws.amazon.com/analytics-key-definitions-utterances
11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11210 class ListUtteranceMetricsRequest < Struct.new( :bot_id, :start_date_time, :end_date_time, :metrics, :bin_by, :group_by, :attributes, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return in each page of results. If there are fewer results than the maximum page size, only the actual number of results are returned.
11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11210 class ListUtteranceMetricsRequest < Struct.new( :bot_id, :start_date_time, :end_date_time, :metrics, :bin_by, :group_by, :attributes, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#metrics ⇒ Array<Types::AnalyticsUtteranceMetric>
A list of objects, each of which contains a metric you want to list, the statistic for the metric you want to return, and the method by which to organize the results.
11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11210 class ListUtteranceMetricsRequest < Struct.new( :bot_id, :start_date_time, :end_date_time, :metrics, :bin_by, :group_by, :attributes, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response from the ListUtteranceMetrics operation contains more results than specified in the maxResults parameter, a token is returned in the response.
Use the returned token in the nextToken parameter of a ListUtteranceMetrics request to return the next page of results. For a complete set of results, call the ListUtteranceMetrics operation until the nextToken returned in the response is null.
11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11210 class ListUtteranceMetricsRequest < Struct.new( :bot_id, :start_date_time, :end_date_time, :metrics, :bin_by, :group_by, :attributes, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#start_date_time ⇒ Time
The date and time that marks the beginning of the range of time for which you want to see utterance metrics.
11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 11210 class ListUtteranceMetricsRequest < Struct.new( :bot_id, :start_date_time, :end_date_time, :metrics, :bin_by, :group_by, :attributes, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |