aws_sdk_datazone/client/
get_time_series_data_point.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`GetTimeSeriesDataPoint`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The ID of the Amazon DataZone domain that houses the asset for which you want to get the data point.</p><br>
7    ///   - [`entity_identifier(impl Into<String>)`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::entity_identifier) / [`set_entity_identifier(Option<String>)`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::set_entity_identifier):<br>required: **true**<br><p>The ID of the asset for which you want to get the data point.</p><br>
8    ///   - [`entity_type(TimeSeriesEntityType)`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::entity_type) / [`set_entity_type(Option<TimeSeriesEntityType>)`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::set_entity_type):<br>required: **true**<br><p>The type of the asset for which you want to get the data point.</p><br>
9    ///   - [`identifier(impl Into<String>)`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::set_identifier):<br>required: **true**<br><p>The ID of the data point that you want to get.</p><br>
10    ///   - [`form_name(impl Into<String>)`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::form_name) / [`set_form_name(Option<String>)`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::set_form_name):<br>required: **true**<br><p>The name of the time series form that houses the data point that you want to get.</p><br>
11    /// - On success, responds with [`GetTimeSeriesDataPointOutput`](crate::operation::get_time_series_data_point::GetTimeSeriesDataPointOutput) with field(s):
12    ///   - [`domain_id(Option<String>)`](crate::operation::get_time_series_data_point::GetTimeSeriesDataPointOutput::domain_id): <p>The ID of the Amazon DataZone domain that houses the asset data point that you want to get.</p>
13    ///   - [`entity_id(Option<String>)`](crate::operation::get_time_series_data_point::GetTimeSeriesDataPointOutput::entity_id): <p>The ID of the asset for which you want to get the data point.</p>
14    ///   - [`entity_type(Option<TimeSeriesEntityType>)`](crate::operation::get_time_series_data_point::GetTimeSeriesDataPointOutput::entity_type): <p>The type of the asset for which you want to get the data point.</p>
15    ///   - [`form_name(Option<String>)`](crate::operation::get_time_series_data_point::GetTimeSeriesDataPointOutput::form_name): <p>The name of the time series form that houses the data point that you want to get.</p>
16    ///   - [`form(Option<TimeSeriesDataPointFormOutput>)`](crate::operation::get_time_series_data_point::GetTimeSeriesDataPointOutput::form): <p>The time series form that houses the data point that you want to get.</p>
17    /// - On failure, responds with [`SdkError<GetTimeSeriesDataPointError>`](crate::operation::get_time_series_data_point::GetTimeSeriesDataPointError)
18    pub fn get_time_series_data_point(&self) -> crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder {
19        crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::new(self.handle.clone())
20    }
21}