Struct aws_sdk_datazone::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointInputBuilder
source · #[non_exhaustive]pub struct GetTimeSeriesDataPointInputBuilder { /* private fields */ }
Expand description
A builder for GetTimeSeriesDataPointInput
.
Implementations§
source§impl GetTimeSeriesDataPointInputBuilder
impl GetTimeSeriesDataPointInputBuilder
sourcepub fn domain_identifier(self, input: impl Into<String>) -> Self
pub fn domain_identifier(self, input: impl Into<String>) -> Self
The ID of the Amazon DataZone domain that houses the asset for which you want to get the data point.
This field is required.sourcepub fn set_domain_identifier(self, input: Option<String>) -> Self
pub fn set_domain_identifier(self, input: Option<String>) -> Self
The ID of the Amazon DataZone domain that houses the asset for which you want to get the data point.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
The ID of the Amazon DataZone domain that houses the asset for which you want to get the data point.
sourcepub fn entity_identifier(self, input: impl Into<String>) -> Self
pub fn entity_identifier(self, input: impl Into<String>) -> Self
The ID of the asset for which you want to get the data point.
This field is required.sourcepub fn set_entity_identifier(self, input: Option<String>) -> Self
pub fn set_entity_identifier(self, input: Option<String>) -> Self
The ID of the asset for which you want to get the data point.
sourcepub fn get_entity_identifier(&self) -> &Option<String>
pub fn get_entity_identifier(&self) -> &Option<String>
The ID of the asset for which you want to get the data point.
sourcepub fn entity_type(self, input: TimeSeriesEntityType) -> Self
pub fn entity_type(self, input: TimeSeriesEntityType) -> Self
The type of the asset for which you want to get the data point.
This field is required.sourcepub fn set_entity_type(self, input: Option<TimeSeriesEntityType>) -> Self
pub fn set_entity_type(self, input: Option<TimeSeriesEntityType>) -> Self
The type of the asset for which you want to get the data point.
sourcepub fn get_entity_type(&self) -> &Option<TimeSeriesEntityType>
pub fn get_entity_type(&self) -> &Option<TimeSeriesEntityType>
The type of the asset for which you want to get the data point.
sourcepub fn identifier(self, input: impl Into<String>) -> Self
pub fn identifier(self, input: impl Into<String>) -> Self
The ID of the data point that you want to get.
This field is required.sourcepub fn set_identifier(self, input: Option<String>) -> Self
pub fn set_identifier(self, input: Option<String>) -> Self
The ID of the data point that you want to get.
sourcepub fn get_identifier(&self) -> &Option<String>
pub fn get_identifier(&self) -> &Option<String>
The ID of the data point that you want to get.
sourcepub fn form_name(self, input: impl Into<String>) -> Self
pub fn form_name(self, input: impl Into<String>) -> Self
The name of the time series form that houses the data point that you want to get.
This field is required.sourcepub fn set_form_name(self, input: Option<String>) -> Self
pub fn set_form_name(self, input: Option<String>) -> Self
The name of the time series form that houses the data point that you want to get.
sourcepub fn get_form_name(&self) -> &Option<String>
pub fn get_form_name(&self) -> &Option<String>
The name of the time series form that houses the data point that you want to get.
sourcepub fn build(self) -> Result<GetTimeSeriesDataPointInput, BuildError>
pub fn build(self) -> Result<GetTimeSeriesDataPointInput, BuildError>
Consumes the builder and constructs a GetTimeSeriesDataPointInput
.
source§impl GetTimeSeriesDataPointInputBuilder
impl GetTimeSeriesDataPointInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetTimeSeriesDataPointOutput, SdkError<GetTimeSeriesDataPointError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetTimeSeriesDataPointOutput, SdkError<GetTimeSeriesDataPointError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetTimeSeriesDataPointInputBuilder
impl Clone for GetTimeSeriesDataPointInputBuilder
source§fn clone(&self) -> GetTimeSeriesDataPointInputBuilder
fn clone(&self) -> GetTimeSeriesDataPointInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetTimeSeriesDataPointInputBuilder
impl Default for GetTimeSeriesDataPointInputBuilder
source§fn default() -> GetTimeSeriesDataPointInputBuilder
fn default() -> GetTimeSeriesDataPointInputBuilder
source§impl PartialEq for GetTimeSeriesDataPointInputBuilder
impl PartialEq for GetTimeSeriesDataPointInputBuilder
source§fn eq(&self, other: &GetTimeSeriesDataPointInputBuilder) -> bool
fn eq(&self, other: &GetTimeSeriesDataPointInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.