Struct aws_sdk_datazone::operation::post_time_series_data_points::PostTimeSeriesDataPointsInput
source · #[non_exhaustive]pub struct PostTimeSeriesDataPointsInput {
pub domain_identifier: Option<String>,
pub entity_identifier: Option<String>,
pub entity_type: Option<TimeSeriesEntityType>,
pub forms: Option<Vec<TimeSeriesDataPointFormInput>>,
pub client_token: Option<String>,
}
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_identifier: Option<String>
The ID of the Amazon DataZone domain in which you want to post time series data points.
entity_identifier: 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<TimeSeriesDataPointFormInput>>
The forms that contain the data points that you want to post.
client_token: Option<String>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
Implementations§
source§impl PostTimeSeriesDataPointsInput
impl PostTimeSeriesDataPointsInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The ID of the Amazon DataZone domain in which you want to post time series data points.
sourcepub fn entity_identifier(&self) -> Option<&str>
pub fn entity_identifier(&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) -> &[TimeSeriesDataPointFormInput]
pub fn forms(&self) -> &[TimeSeriesDataPointFormInput]
The forms that contain the data points that you want to post.
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()
.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
source§impl PostTimeSeriesDataPointsInput
impl PostTimeSeriesDataPointsInput
sourcepub fn builder() -> PostTimeSeriesDataPointsInputBuilder
pub fn builder() -> PostTimeSeriesDataPointsInputBuilder
Creates a new builder-style object to manufacture PostTimeSeriesDataPointsInput
.
Trait Implementations§
source§impl Clone for PostTimeSeriesDataPointsInput
impl Clone for PostTimeSeriesDataPointsInput
source§fn clone(&self) -> PostTimeSeriesDataPointsInput
fn clone(&self) -> PostTimeSeriesDataPointsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for PostTimeSeriesDataPointsInput
impl PartialEq for PostTimeSeriesDataPointsInput
source§fn eq(&self, other: &PostTimeSeriesDataPointsInput) -> bool
fn eq(&self, other: &PostTimeSeriesDataPointsInput) -> bool
self
and other
values to be equal, and is used
by ==
.