Struct aws_sdk_datazone::operation::post_time_series_data_points::PostTimeSeriesDataPointsOutput
source · #[non_exhaustive]pub struct PostTimeSeriesDataPointsOutput {
pub domain_id: Option<String>,
pub entity_id: Option<String>,
pub entity_type: Option<TimeSeriesEntityType>,
pub forms: Option<Vec<TimeSeriesDataPointFormOutput>>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_id: Option<String>
The ID of the Amazon DataZone domain in which you want to post time series data points.
entity_id: Option<String>
The ID of the asset for which you want to post time series data points.
entity_type: Option<TimeSeriesEntityType>
The type of the asset for which you want to post data points.
forms: Option<Vec<TimeSeriesDataPointFormOutput>>
The forms that contain the data points that you have posted.
Implementations§
source§impl PostTimeSeriesDataPointsOutput
impl PostTimeSeriesDataPointsOutput
sourcepub fn domain_id(&self) -> Option<&str>
pub fn domain_id(&self) -> Option<&str>
The ID of the Amazon DataZone domain in which you want to post time series data points.
sourcepub fn entity_id(&self) -> Option<&str>
pub fn entity_id(&self) -> Option<&str>
The ID of the asset for which you want to post time series data points.
sourcepub fn entity_type(&self) -> Option<&TimeSeriesEntityType>
pub fn entity_type(&self) -> Option<&TimeSeriesEntityType>
The type of the asset for which you want to post data points.
sourcepub fn forms(&self) -> &[TimeSeriesDataPointFormOutput]
pub fn forms(&self) -> &[TimeSeriesDataPointFormOutput]
The forms that contain the data points that you have posted.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .forms.is_none()
.
source§impl PostTimeSeriesDataPointsOutput
impl PostTimeSeriesDataPointsOutput
sourcepub fn builder() -> PostTimeSeriesDataPointsOutputBuilder
pub fn builder() -> PostTimeSeriesDataPointsOutputBuilder
Creates a new builder-style object to manufacture PostTimeSeriesDataPointsOutput
.
Trait Implementations§
source§impl Clone for PostTimeSeriesDataPointsOutput
impl Clone for PostTimeSeriesDataPointsOutput
source§fn clone(&self) -> PostTimeSeriesDataPointsOutput
fn clone(&self) -> PostTimeSeriesDataPointsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for PostTimeSeriesDataPointsOutput
impl PartialEq for PostTimeSeriesDataPointsOutput
source§fn eq(&self, other: &PostTimeSeriesDataPointsOutput) -> bool
fn eq(&self, other: &PostTimeSeriesDataPointsOutput) -> bool
self
and other
values to be equal, and is used by ==
.source§impl RequestId for PostTimeSeriesDataPointsOutput
impl RequestId for PostTimeSeriesDataPointsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for PostTimeSeriesDataPointsOutput
Auto Trait Implementations§
impl Freeze for PostTimeSeriesDataPointsOutput
impl RefUnwindSafe for PostTimeSeriesDataPointsOutput
impl Send for PostTimeSeriesDataPointsOutput
impl Sync for PostTimeSeriesDataPointsOutput
impl Unpin for PostTimeSeriesDataPointsOutput
impl UnwindSafe for PostTimeSeriesDataPointsOutput
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