Struct aws_sdk_datazone::operation::get_time_series_data_point::builders::GetTimeSeriesDataPointOutputBuilder
source · #[non_exhaustive]pub struct GetTimeSeriesDataPointOutputBuilder { /* private fields */ }
Expand description
A builder for GetTimeSeriesDataPointOutput
.
Implementations§
source§impl GetTimeSeriesDataPointOutputBuilder
impl GetTimeSeriesDataPointOutputBuilder
sourcepub fn domain_id(self, input: impl Into<String>) -> Self
pub fn domain_id(self, input: impl Into<String>) -> Self
The ID of the Amazon DataZone domain that houses the asset data point that you want to get.
sourcepub fn set_domain_id(self, input: Option<String>) -> Self
pub fn set_domain_id(self, input: Option<String>) -> Self
The ID of the Amazon DataZone domain that houses the asset data point that you want to get.
sourcepub fn get_domain_id(&self) -> &Option<String>
pub fn get_domain_id(&self) -> &Option<String>
The ID of the Amazon DataZone domain that houses the asset data point that you want to get.
sourcepub fn entity_id(self, input: impl Into<String>) -> Self
pub fn entity_id(self, input: impl Into<String>) -> Self
The ID of the asset for which you want to get the data point.
sourcepub fn set_entity_id(self, input: Option<String>) -> Self
pub fn set_entity_id(self, input: Option<String>) -> Self
The ID of the asset for which you want to get the data point.
sourcepub fn get_entity_id(&self) -> &Option<String>
pub fn get_entity_id(&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.
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 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.
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 form(self, input: TimeSeriesDataPointFormOutput) -> Self
pub fn form(self, input: TimeSeriesDataPointFormOutput) -> Self
The time series form that houses the data point that you want to get.
sourcepub fn set_form(self, input: Option<TimeSeriesDataPointFormOutput>) -> Self
pub fn set_form(self, input: Option<TimeSeriesDataPointFormOutput>) -> Self
The time series form that houses the data point that you want to get.
sourcepub fn get_form(&self) -> &Option<TimeSeriesDataPointFormOutput>
pub fn get_form(&self) -> &Option<TimeSeriesDataPointFormOutput>
The time series form that houses the data point that you want to get.
sourcepub fn build(self) -> GetTimeSeriesDataPointOutput
pub fn build(self) -> GetTimeSeriesDataPointOutput
Consumes the builder and constructs a GetTimeSeriesDataPointOutput
.
Trait Implementations§
source§impl Clone for GetTimeSeriesDataPointOutputBuilder
impl Clone for GetTimeSeriesDataPointOutputBuilder
source§fn clone(&self) -> GetTimeSeriesDataPointOutputBuilder
fn clone(&self) -> GetTimeSeriesDataPointOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetTimeSeriesDataPointOutputBuilder
impl Default for GetTimeSeriesDataPointOutputBuilder
source§fn default() -> GetTimeSeriesDataPointOutputBuilder
fn default() -> GetTimeSeriesDataPointOutputBuilder
source§impl PartialEq for GetTimeSeriesDataPointOutputBuilder
impl PartialEq for GetTimeSeriesDataPointOutputBuilder
source§fn eq(&self, other: &GetTimeSeriesDataPointOutputBuilder) -> bool
fn eq(&self, other: &GetTimeSeriesDataPointOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetTimeSeriesDataPointOutputBuilder
Auto Trait Implementations§
impl Freeze for GetTimeSeriesDataPointOutputBuilder
impl RefUnwindSafe for GetTimeSeriesDataPointOutputBuilder
impl Send for GetTimeSeriesDataPointOutputBuilder
impl Sync for GetTimeSeriesDataPointOutputBuilder
impl Unpin for GetTimeSeriesDataPointOutputBuilder
impl UnwindSafe for GetTimeSeriesDataPointOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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