Interface AnalyticsSessionResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AnalyticsSessionResult.Builder,AnalyticsSessionResult>,SdkBuilder<AnalyticsSessionResult.Builder,AnalyticsSessionResult>,SdkPojo
- Enclosing class:
- AnalyticsSessionResult
public static interface AnalyticsSessionResult.Builder extends SdkPojo, CopyableBuilder<AnalyticsSessionResult.Builder,AnalyticsSessionResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnalyticsSessionResult.BuilderbinKeys(Collection<AnalyticsBinKey> binKeys)A list of objects containing the criteria you requested for binning results and the values of the bins.AnalyticsSessionResult.BuilderbinKeys(Consumer<AnalyticsBinKey.Builder>... binKeys)A list of objects containing the criteria you requested for binning results and the values of the bins.AnalyticsSessionResult.BuilderbinKeys(AnalyticsBinKey... binKeys)A list of objects containing the criteria you requested for binning results and the values of the bins.AnalyticsSessionResult.BuildergroupByKeys(Collection<AnalyticsSessionGroupByKey> groupByKeys)A list of objects containing the criteria you requested for grouping results and the values of the bins.AnalyticsSessionResult.BuildergroupByKeys(Consumer<AnalyticsSessionGroupByKey.Builder>... groupByKeys)A list of objects containing the criteria you requested for grouping results and the values of the bins.AnalyticsSessionResult.BuildergroupByKeys(AnalyticsSessionGroupByKey... groupByKeys)A list of objects containing the criteria you requested for grouping results and the values of the bins.AnalyticsSessionResult.BuildermetricsResults(Collection<AnalyticsSessionMetricResult> metricsResults)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.AnalyticsSessionResult.BuildermetricsResults(Consumer<AnalyticsSessionMetricResult.Builder>... metricsResults)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.AnalyticsSessionResult.BuildermetricsResults(AnalyticsSessionMetricResult... metricsResults)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.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
binKeys
AnalyticsSessionResult.Builder binKeys(Collection<AnalyticsBinKey> binKeys)
A list of objects containing the criteria you requested for binning results and the values of the bins.
- Parameters:
binKeys- A list of objects containing the criteria you requested for binning results and the values of the bins.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
binKeys
AnalyticsSessionResult.Builder binKeys(AnalyticsBinKey... binKeys)
A list of objects containing the criteria you requested for binning results and the values of the bins.
- Parameters:
binKeys- A list of objects containing the criteria you requested for binning results and the values of the bins.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
binKeys
AnalyticsSessionResult.Builder binKeys(Consumer<AnalyticsBinKey.Builder>... binKeys)
A list of objects containing the criteria you requested for binning results and the values of the bins.
This is a convenience method that creates an instance of theAnalyticsBinKey.Builderavoiding the need to create one manually viaAnalyticsBinKey.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#binKeys(List.) - Parameters:
binKeys- a consumer that will call methods onAnalyticsBinKey.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#binKeys(java.util.Collection)
-
groupByKeys
AnalyticsSessionResult.Builder groupByKeys(Collection<AnalyticsSessionGroupByKey> groupByKeys)
A list of objects containing the criteria you requested for grouping results and the values of the bins.
- Parameters:
groupByKeys- A list of objects containing the criteria you requested for grouping results and the values of the bins.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupByKeys
AnalyticsSessionResult.Builder groupByKeys(AnalyticsSessionGroupByKey... groupByKeys)
A list of objects containing the criteria you requested for grouping results and the values of the bins.
- Parameters:
groupByKeys- A list of objects containing the criteria you requested for grouping results and the values of the bins.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupByKeys
AnalyticsSessionResult.Builder groupByKeys(Consumer<AnalyticsSessionGroupByKey.Builder>... groupByKeys)
A list of objects containing the criteria you requested for grouping results and the values of the bins.
This is a convenience method that creates an instance of theAnalyticsSessionGroupByKey.Builderavoiding the need to create one manually viaAnalyticsSessionGroupByKey.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#groupByKeys(List.) - Parameters:
groupByKeys- a consumer that will call methods onAnalyticsSessionGroupByKey.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#groupByKeys(java.util.Collection)
-
metricsResults
AnalyticsSessionResult.Builder metricsResults(Collection<AnalyticsSessionMetricResult> metricsResults)
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:
metricsResults- 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.
-
metricsResults
AnalyticsSessionResult.Builder metricsResults(AnalyticsSessionMetricResult... metricsResults)
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:
metricsResults- 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.
-
metricsResults
AnalyticsSessionResult.Builder metricsResults(Consumer<AnalyticsSessionMetricResult.Builder>... metricsResults)
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.
This is a convenience method that creates an instance of theAnalyticsSessionMetricResult.Builderavoiding the need to create one manually viaAnalyticsSessionMetricResult.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#metricsResults(List.) - Parameters:
metricsResults- a consumer that will call methods onAnalyticsSessionMetricResult.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#metricsResults(java.util.Collection)
-
-