Struct aws_sdk_datazone::operation::list_time_series_data_points::ListTimeSeriesDataPointsInput
source · #[non_exhaustive]pub struct ListTimeSeriesDataPointsInput {
pub domain_identifier: Option<String>,
pub entity_identifier: Option<String>,
pub entity_type: Option<TimeSeriesEntityType>,
pub form_name: Option<String>,
pub started_at: Option<DateTime>,
pub ended_at: Option<DateTime>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.domain_identifier: Option<String>
The ID of the Amazon DataZone domain that houses the assets for which you want to list time series data points.
entity_identifier: Option<String>
The ID of the asset for which you want to list data points.
entity_type: Option<TimeSeriesEntityType>
The type of the asset for which you want to list data points.
form_name: Option<String>
The name of the time series data points form.
started_at: Option<DateTime>
The timestamp at which the data points that you want to list started.
ended_at: Option<DateTime>
The timestamp at which the data points that you wanted to list ended.
next_token: Option<String>
When the number of data points is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of data points, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListTimeSeriesDataPoints to list the next set of data points.
max_results: Option<i32>
The maximum number of data points to return in a single call to ListTimeSeriesDataPoints. When the number of data points to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListTimeSeriesDataPoints to list the next set of data points.
Implementations§
source§impl ListTimeSeriesDataPointsInput
impl ListTimeSeriesDataPointsInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The ID of the Amazon DataZone domain that houses the assets for which you want to list time series data points.
sourcepub fn entity_identifier(&self) -> Option<&str>
pub fn entity_identifier(&self) -> Option<&str>
The ID of the asset for which you want to list data points.
sourcepub fn entity_type(&self) -> Option<&TimeSeriesEntityType>
pub fn entity_type(&self) -> Option<&TimeSeriesEntityType>
The type of the asset for which you want to list data points.
sourcepub fn started_at(&self) -> Option<&DateTime>
pub fn started_at(&self) -> Option<&DateTime>
The timestamp at which the data points that you want to list started.
sourcepub fn ended_at(&self) -> Option<&DateTime>
pub fn ended_at(&self) -> Option<&DateTime>
The timestamp at which the data points that you wanted to list ended.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
When the number of data points is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of data points, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListTimeSeriesDataPoints to list the next set of data points.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of data points to return in a single call to ListTimeSeriesDataPoints. When the number of data points to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListTimeSeriesDataPoints to list the next set of data points.
source§impl ListTimeSeriesDataPointsInput
impl ListTimeSeriesDataPointsInput
sourcepub fn builder() -> ListTimeSeriesDataPointsInputBuilder
pub fn builder() -> ListTimeSeriesDataPointsInputBuilder
Creates a new builder-style object to manufacture ListTimeSeriesDataPointsInput
.
Trait Implementations§
source§impl Clone for ListTimeSeriesDataPointsInput
impl Clone for ListTimeSeriesDataPointsInput
source§fn clone(&self) -> ListTimeSeriesDataPointsInput
fn clone(&self) -> ListTimeSeriesDataPointsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ListTimeSeriesDataPointsInput
impl PartialEq for ListTimeSeriesDataPointsInput
source§fn eq(&self, other: &ListTimeSeriesDataPointsInput) -> bool
fn eq(&self, other: &ListTimeSeriesDataPointsInput) -> bool
self
and other
values to be equal, and is used
by ==
.