Struct aws_sdk_deadline::operation::get_sessions_statistics_aggregation::GetSessionsStatisticsAggregationOutput
source · #[non_exhaustive]pub struct GetSessionsStatisticsAggregationOutput {
pub statistics: Option<Vec<Statistics>>,
pub next_token: Option<String>,
pub status: SessionsStatisticsAggregationStatus,
pub status_message: Option<String>,
/* private fields */
}
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.statistics: Option<Vec<Statistics>>
The statistics for the specified fleets or queues.
next_token: Option<String>
If Deadline Cloud returns nextToken
, then there are more results available. The value of nextToken
is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then nextToken
is set to null
. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 ValidationException
error.
status: SessionsStatisticsAggregationStatus
The status of the aggregated results.
status_message: Option<String>
A message that describes the status.
Implementations§
source§impl GetSessionsStatisticsAggregationOutput
impl GetSessionsStatisticsAggregationOutput
sourcepub fn statistics(&self) -> &[Statistics]
pub fn statistics(&self) -> &[Statistics]
The statistics for the specified fleets or queues.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .statistics.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If Deadline Cloud returns nextToken
, then there are more results available. The value of nextToken
is a unique pagination token for each page. To retrieve the next page, call the operation again using the returned token. Keep all other arguments unchanged. If no results remain, then nextToken
is set to null
. Each pagination token expires after 24 hours. If you provide a token that isn't valid, then you receive an HTTP 400 ValidationException
error.
sourcepub fn status(&self) -> &SessionsStatisticsAggregationStatus
pub fn status(&self) -> &SessionsStatisticsAggregationStatus
The status of the aggregated results.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
A message that describes the status.
source§impl GetSessionsStatisticsAggregationOutput
impl GetSessionsStatisticsAggregationOutput
sourcepub fn builder() -> GetSessionsStatisticsAggregationOutputBuilder
pub fn builder() -> GetSessionsStatisticsAggregationOutputBuilder
Creates a new builder-style object to manufacture GetSessionsStatisticsAggregationOutput
.
Trait Implementations§
source§impl Clone for GetSessionsStatisticsAggregationOutput
impl Clone for GetSessionsStatisticsAggregationOutput
source§fn clone(&self) -> GetSessionsStatisticsAggregationOutput
fn clone(&self) -> GetSessionsStatisticsAggregationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetSessionsStatisticsAggregationOutput
impl PartialEq for GetSessionsStatisticsAggregationOutput
source§fn eq(&self, other: &GetSessionsStatisticsAggregationOutput) -> bool
fn eq(&self, other: &GetSessionsStatisticsAggregationOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetSessionsStatisticsAggregationOutput
impl RequestId for GetSessionsStatisticsAggregationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.