aws_sdk_datazone/client/get_time_series_data_point.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetTimeSeriesDataPoint`](crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`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>
/// - [`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>
/// - [`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>
/// - [`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>
/// - [`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>
/// - On success, responds with [`GetTimeSeriesDataPointOutput`](crate::operation::get_time_series_data_point::GetTimeSeriesDataPointOutput) with field(s):
/// - [`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>
/// - [`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>
/// - [`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>
/// - [`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>
/// - [`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>
/// - On failure, responds with [`SdkError<GetTimeSeriesDataPointError>`](crate::operation::get_time_series_data_point::GetTimeSeriesDataPointError)
pub fn get_time_series_data_point(&self) -> crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder {
crate::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointFluentBuilder::new(self.handle.clone())
}
}