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 ==.impl StructuralPartialEq for GetTimeSeriesDataPointInputBuilder
Auto Trait Implementations§
impl Freeze for GetTimeSeriesDataPointInputBuilder
impl RefUnwindSafe for GetTimeSeriesDataPointInputBuilder
impl Send for GetTimeSeriesDataPointInputBuilder
impl Sync for GetTimeSeriesDataPointInputBuilder
impl Unpin for GetTimeSeriesDataPointInputBuilder
impl UnwindSafe for GetTimeSeriesDataPointInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more