/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object specifying the measure and method by which to sort the session
* analytics data.See Also:
AWS
* API Reference
The measure by which to sort the session analytics data.
* conversationStartTime
– The date and time when the conversation
* began. A conversation is defined as a unique combination of a
* sessionId
and an originatingRequestId
.
numberOfTurns
– The number of turns that the session took.
conversationDurationSeconds
– The duration of the
* conversation in seconds.
The measure by which to sort the session analytics data.
* conversationStartTime
– The date and time when the conversation
* began. A conversation is defined as a unique combination of a
* sessionId
and an originatingRequestId
.
numberOfTurns
– The number of turns that the session took.
conversationDurationSeconds
– The duration of the
* conversation in seconds.
The measure by which to sort the session analytics data.
* conversationStartTime
– The date and time when the conversation
* began. A conversation is defined as a unique combination of a
* sessionId
and an originatingRequestId
.
numberOfTurns
– The number of turns that the session took.
conversationDurationSeconds
– The duration of the
* conversation in seconds.
The measure by which to sort the session analytics data.
* conversationStartTime
– The date and time when the conversation
* began. A conversation is defined as a unique combination of a
* sessionId
and an originatingRequestId
.
numberOfTurns
– The number of turns that the session took.
conversationDurationSeconds
– The duration of the
* conversation in seconds.
The measure by which to sort the session analytics data.
* conversationStartTime
– The date and time when the conversation
* began. A conversation is defined as a unique combination of a
* sessionId
and an originatingRequestId
.
numberOfTurns
– The number of turns that the session took.
conversationDurationSeconds
– The duration of the
* conversation in seconds.
The measure by which to sort the session analytics data.
* conversationStartTime
– The date and time when the conversation
* began. A conversation is defined as a unique combination of a
* sessionId
and an originatingRequestId
.
numberOfTurns
– The number of turns that the session took.
conversationDurationSeconds
– The duration of the
* conversation in seconds.
Specifies whether to sort the results in ascending or descending order.
*/ inline const AnalyticsSortOrder& GetOrder() const{ return m_order; } /** *Specifies whether to sort the results in ascending or descending order.
*/ inline bool OrderHasBeenSet() const { return m_orderHasBeenSet; } /** *Specifies whether to sort the results in ascending or descending order.
*/ inline void SetOrder(const AnalyticsSortOrder& value) { m_orderHasBeenSet = true; m_order = value; } /** *Specifies whether to sort the results in ascending or descending order.
*/ inline void SetOrder(AnalyticsSortOrder&& value) { m_orderHasBeenSet = true; m_order = std::move(value); } /** *Specifies whether to sort the results in ascending or descending order.
*/ inline SessionDataSortBy& WithOrder(const AnalyticsSortOrder& value) { SetOrder(value); return *this;} /** *Specifies whether to sort the results in ascending or descending order.
*/ inline SessionDataSortBy& WithOrder(AnalyticsSortOrder&& value) { SetOrder(std::move(value)); return *this;} private: AnalyticsSessionSortByName m_name; bool m_nameHasBeenSet = false; AnalyticsSortOrder m_order; bool m_orderHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws