#[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 ==.impl StructuralPartialEq for DeleteTimeSeriesInput
Auto Trait Implementations§
impl Freeze for DeleteTimeSeriesInput
impl RefUnwindSafe for DeleteTimeSeriesInput
impl Send for DeleteTimeSeriesInput
impl Sync for DeleteTimeSeriesInput
impl Unpin for DeleteTimeSeriesInput
impl UnwindSafe for DeleteTimeSeriesInput
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> 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