Struct aws_sdk_lexmodelsv2::types::AnalyticsSessionResult
source · #[non_exhaustive]pub struct AnalyticsSessionResult {
pub bin_keys: Option<Vec<AnalyticsBinKey>>,
pub group_by_keys: Option<Vec<AnalyticsSessionGroupByKey>>,
pub metrics_results: Option<Vec<AnalyticsSessionMetricResult>>,
}
Expand description
An object containing the results for the session metrics you requested and the bin and/or group(s) they refer to, if applicable.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.bin_keys: Option<Vec<AnalyticsBinKey>>
A list of objects containing the criteria you requested for binning results and the values of the bins.
group_by_keys: Option<Vec<AnalyticsSessionGroupByKey>>
A list of objects containing the criteria you requested for grouping results and the values of the bins.
metrics_results: Option<Vec<AnalyticsSessionMetricResult>>
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.
Implementations§
source§impl AnalyticsSessionResult
impl AnalyticsSessionResult
sourcepub fn bin_keys(&self) -> &[AnalyticsBinKey]
pub fn bin_keys(&self) -> &[AnalyticsBinKey]
A list of objects containing the criteria you requested for binning results and the values of the bins.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .bin_keys.is_none()
.
sourcepub fn group_by_keys(&self) -> &[AnalyticsSessionGroupByKey]
pub fn group_by_keys(&self) -> &[AnalyticsSessionGroupByKey]
A list of objects containing the criteria you requested for grouping results and the values of the bins.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .group_by_keys.is_none()
.
sourcepub fn metrics_results(&self) -> &[AnalyticsSessionMetricResult]
pub fn metrics_results(&self) -> &[AnalyticsSessionMetricResult]
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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .metrics_results.is_none()
.
source§impl AnalyticsSessionResult
impl AnalyticsSessionResult
sourcepub fn builder() -> AnalyticsSessionResultBuilder
pub fn builder() -> AnalyticsSessionResultBuilder
Creates a new builder-style object to manufacture AnalyticsSessionResult
.
Trait Implementations§
source§impl Clone for AnalyticsSessionResult
impl Clone for AnalyticsSessionResult
source§fn clone(&self) -> AnalyticsSessionResult
fn clone(&self) -> AnalyticsSessionResult
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AnalyticsSessionResult
impl Debug for AnalyticsSessionResult
source§impl PartialEq for AnalyticsSessionResult
impl PartialEq for AnalyticsSessionResult
source§fn eq(&self, other: &AnalyticsSessionResult) -> bool
fn eq(&self, other: &AnalyticsSessionResult) -> bool
self
and other
values to be equal, and is used
by ==
.