Struct aws_sdk_datazone::operation::delete_time_series_data_points::DeleteTimeSeriesDataPointsInput
source · #[non_exhaustive]pub struct DeleteTimeSeriesDataPointsInput {
pub domain_identifier: Option<String>,
pub entity_identifier: Option<String>,
pub entity_type: Option<TimeSeriesEntityType>,
pub form_name: Option<String>,
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 that houses the asset for which you want to delete a time series form.
entity_identifier: Option<String>
The ID of the asset for which you want to delete a time series form.
entity_type: Option<TimeSeriesEntityType>
The type of the asset for which you want to delete a time series form.
form_name: Option<String>
The name of the time series form that you want to delete.
client_token: Option<String>
A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.
Implementations§
source§impl DeleteTimeSeriesDataPointsInput
impl DeleteTimeSeriesDataPointsInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The ID of the Amazon DataZone domain that houses the asset for which you want to delete a time series form.
sourcepub fn entity_identifier(&self) -> Option<&str>
pub fn entity_identifier(&self) -> Option<&str>
The ID of the asset for which you want to delete a time series form.
sourcepub fn entity_type(&self) -> Option<&TimeSeriesEntityType>
pub fn entity_type(&self) -> Option<&TimeSeriesEntityType>
The type of the asset for which you want to delete a time series form.
sourcepub fn form_name(&self) -> Option<&str>
pub fn form_name(&self) -> Option<&str>
The name of the time series form that you want to delete.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.
source§impl DeleteTimeSeriesDataPointsInput
impl DeleteTimeSeriesDataPointsInput
sourcepub fn builder() -> DeleteTimeSeriesDataPointsInputBuilder
pub fn builder() -> DeleteTimeSeriesDataPointsInputBuilder
Creates a new builder-style object to manufacture DeleteTimeSeriesDataPointsInput
.
Trait Implementations§
source§impl Clone for DeleteTimeSeriesDataPointsInput
impl Clone for DeleteTimeSeriesDataPointsInput
source§fn clone(&self) -> DeleteTimeSeriesDataPointsInput
fn clone(&self) -> DeleteTimeSeriesDataPointsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DeleteTimeSeriesDataPointsInput
impl PartialEq for DeleteTimeSeriesDataPointsInput
source§fn eq(&self, other: &DeleteTimeSeriesDataPointsInput) -> bool
fn eq(&self, other: &DeleteTimeSeriesDataPointsInput) -> bool
self
and other
values to be equal, and is used
by ==
.