Struct aws_sdk_datazone::operation::post_time_series_data_points::builders::PostTimeSeriesDataPointsInputBuilder
source · #[non_exhaustive]pub struct PostTimeSeriesDataPointsInputBuilder { /* private fields */ }
Expand description
A builder for PostTimeSeriesDataPointsInput
.
Implementations§
source§impl PostTimeSeriesDataPointsInputBuilder
impl PostTimeSeriesDataPointsInputBuilder
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 in which you want to post time series data points.
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 in which you want to post time series data points.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
The ID of the Amazon DataZone domain in which you want to post time series data points.
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 post time series data points.
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 post time series data points.
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 post time series data points.
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 post data points.
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 post data points.
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 post data points.
sourcepub fn forms(self, input: TimeSeriesDataPointFormInput) -> Self
pub fn forms(self, input: TimeSeriesDataPointFormInput) -> Self
Appends an item to forms
.
To override the contents of this collection use set_forms
.
The forms that contain the data points that you want to post.
sourcepub fn set_forms(self, input: Option<Vec<TimeSeriesDataPointFormInput>>) -> Self
pub fn set_forms(self, input: Option<Vec<TimeSeriesDataPointFormInput>>) -> Self
The forms that contain the data points that you want to post.
sourcepub fn get_forms(&self) -> &Option<Vec<TimeSeriesDataPointFormInput>>
pub fn get_forms(&self) -> &Option<Vec<TimeSeriesDataPointFormInput>>
The forms that contain the data points that you want to post.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
sourcepub fn build(self) -> Result<PostTimeSeriesDataPointsInput, BuildError>
pub fn build(self) -> Result<PostTimeSeriesDataPointsInput, BuildError>
Consumes the builder and constructs a PostTimeSeriesDataPointsInput
.
source§impl PostTimeSeriesDataPointsInputBuilder
impl PostTimeSeriesDataPointsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<PostTimeSeriesDataPointsOutput, SdkError<PostTimeSeriesDataPointsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<PostTimeSeriesDataPointsOutput, SdkError<PostTimeSeriesDataPointsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for PostTimeSeriesDataPointsInputBuilder
impl Clone for PostTimeSeriesDataPointsInputBuilder
source§fn clone(&self) -> PostTimeSeriesDataPointsInputBuilder
fn clone(&self) -> PostTimeSeriesDataPointsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for PostTimeSeriesDataPointsInputBuilder
impl Default for PostTimeSeriesDataPointsInputBuilder
source§fn default() -> PostTimeSeriesDataPointsInputBuilder
fn default() -> PostTimeSeriesDataPointsInputBuilder
source§impl PartialEq for PostTimeSeriesDataPointsInputBuilder
impl PartialEq for PostTimeSeriesDataPointsInputBuilder
source§fn eq(&self, other: &PostTimeSeriesDataPointsInputBuilder) -> bool
fn eq(&self, other: &PostTimeSeriesDataPointsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.