#[non_exhaustive]pub struct DeleteTimeSeriesInput {
pub alias: Option<String>,
pub asset_id: Option<String>,
pub property_id: 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.alias: Option<String>The alias that identifies the time series.
asset_id: Option<String>The ID of the asset in which the asset property was created. This can be either the actual ID in UUID format, or else externalId: followed by the external ID, if it has one. For more information, see Referencing objects with external IDs in the IoT SiteWise User Guide.
property_id: Option<String>The ID of the asset property. This can be either the actual ID in UUID format, or else externalId: followed by the external ID, if it has one. For more information, see Referencing objects with external IDs in the IoT SiteWise User Guide.
client_token: Option<String>A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
Implementations§
source§impl DeleteTimeSeriesInput
impl DeleteTimeSeriesInput
sourcepub fn asset_id(&self) -> Option<&str>
pub fn asset_id(&self) -> Option<&str>
The ID of the asset in which the asset property was created. This can be either the actual ID in UUID format, or else externalId: followed by the external ID, if it has one. For more information, see Referencing objects with external IDs in the IoT SiteWise User Guide.
sourcepub fn property_id(&self) -> Option<&str>
pub fn property_id(&self) -> Option<&str>
The ID of the asset property. This can be either the actual ID in UUID format, or else externalId: followed by the external ID, if it has one. For more information, see Referencing objects with external IDs in the IoT SiteWise User Guide.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
source§impl DeleteTimeSeriesInput
impl DeleteTimeSeriesInput
sourcepub fn builder() -> DeleteTimeSeriesInputBuilder
pub fn builder() -> DeleteTimeSeriesInputBuilder
Creates a new builder-style object to manufacture DeleteTimeSeriesInput.
Trait Implementations§
source§impl Clone for DeleteTimeSeriesInput
impl Clone for DeleteTimeSeriesInput
source§fn clone(&self) -> DeleteTimeSeriesInput
fn clone(&self) -> DeleteTimeSeriesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteTimeSeriesInput
impl Debug for DeleteTimeSeriesInput
source§impl PartialEq for DeleteTimeSeriesInput
impl PartialEq for DeleteTimeSeriesInput
source§fn eq(&self, other: &DeleteTimeSeriesInput) -> bool
fn eq(&self, other: &DeleteTimeSeriesInput) -> bool
self and other values to be equal, and is used
by ==.