Interface ListSessionMetricsRequest.Builder

    • Method Detail

      • botId

        ListSessionMetricsRequest.Builder botId​(String botId)

        The identifier for the bot for which you want to retrieve session metrics.

        Parameters:
        botId - The identifier for the bot for which you want to retrieve session metrics.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • startDateTime

        ListSessionMetricsRequest.Builder startDateTime​(Instant startDateTime)

        The date and time that marks the beginning of the range of time for which you want to see session metrics.

        Parameters:
        startDateTime - The date and time that marks the beginning of the range of time for which you want to see session metrics.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • endDateTime

        ListSessionMetricsRequest.Builder endDateTime​(Instant endDateTime)

        The date and time that marks the end of the range of time for which you want to see session metrics.

        Parameters:
        endDateTime - The date and time that marks the end of the range of time for which you want to see session metrics.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • metrics

        ListSessionMetricsRequest.Builder metrics​(Collection<AnalyticsSessionMetric> metrics)

        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.

        Parameters:
        metrics - 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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • metrics

        ListSessionMetricsRequest.Builder metrics​(AnalyticsSessionMetric... metrics)

        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.

        Parameters:
        metrics - 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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • binBy

        ListSessionMetricsRequest.Builder binBy​(Collection<AnalyticsBinBySpecification> binBy)

        A list of objects, each of which contains specifications for organizing the results by time.

        Parameters:
        binBy - A list of objects, each of which contains specifications for organizing the results by time.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • binBy

        ListSessionMetricsRequest.Builder binBy​(AnalyticsBinBySpecification... binBy)

        A list of objects, each of which contains specifications for organizing the results by time.

        Parameters:
        binBy - A list of objects, each of which contains specifications for organizing the results by time.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • groupBy

        ListSessionMetricsRequest.Builder groupBy​(Collection<AnalyticsSessionGroupBySpecification> groupBy)

        A list of objects, each of which specifies how to group the results. You can group by the following criteria:

        • ConversationEndState – The final state of the conversation. The possible end states are detailed in Key definitions in the user guide.

        • LocaleId – The unique identifier of the bot locale.

        Parameters:
        groupBy - A list of objects, each of which specifies how to group the results. You can group by the following criteria:

        • ConversationEndState – The final state of the conversation. The possible end states are detailed in Key definitions in the user guide.

        • LocaleId – The unique identifier of the bot locale.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • groupBy

        ListSessionMetricsRequest.Builder groupBy​(AnalyticsSessionGroupBySpecification... groupBy)

        A list of objects, each of which specifies how to group the results. You can group by the following criteria:

        • ConversationEndState – The final state of the conversation. The possible end states are detailed in Key definitions in the user guide.

        • LocaleId – The unique identifier of the bot locale.

        Parameters:
        groupBy - A list of objects, each of which specifies how to group the results. You can group by the following criteria:

        • ConversationEndState – The final state of the conversation. The possible end states are detailed in Key definitions in the user guide.

        • LocaleId – The unique identifier of the bot locale.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • filters

        ListSessionMetricsRequest.Builder filters​(Collection<AnalyticsSessionFilter> filters)

        A list of objects, each of which describes a condition by which you want to filter the results.

        Parameters:
        filters - A list of objects, each of which describes a condition by which you want to filter the results.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • filters

        ListSessionMetricsRequest.Builder filters​(AnalyticsSessionFilter... filters)

        A list of objects, each of which describes a condition by which you want to filter the results.

        Parameters:
        filters - A list of objects, each of which describes a condition by which you want to filter the results.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • maxResults

        ListSessionMetricsRequest.Builder maxResults​(Integer maxResults)

        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.

        Parameters:
        maxResults - 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.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • nextToken

        ListSessionMetricsRequest.Builder nextToken​(String nextToken)

        If the response from the ListSessionMetrics 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 ListSessionMetrics request to return the next page of results. For a complete set of results, call the ListSessionMetrics operation until the nextToken returned in the response is null.

        Parameters:
        nextToken - If the response from the ListSessionMetrics 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 ListSessionMetrics request to return the next page of results. For a complete set of results, call the ListSessionMetrics operation until the nextToken returned in the response is null.

        Returns:
        Returns a reference to this object so that method calls can be chained together.