#[non_exhaustive]pub struct DeleteAssetModelInput {
pub asset_model_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.asset_model_id: Option<String>The ID of the asset model to delete. 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 DeleteAssetModelInput
impl DeleteAssetModelInput
sourcepub fn asset_model_id(&self) -> Option<&str>
pub fn asset_model_id(&self) -> Option<&str>
The ID of the asset model to delete. 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 DeleteAssetModelInput
impl DeleteAssetModelInput
sourcepub fn builder() -> DeleteAssetModelInputBuilder
pub fn builder() -> DeleteAssetModelInputBuilder
Creates a new builder-style object to manufacture DeleteAssetModelInput.
Trait Implementations§
source§impl Clone for DeleteAssetModelInput
impl Clone for DeleteAssetModelInput
source§fn clone(&self) -> DeleteAssetModelInput
fn clone(&self) -> DeleteAssetModelInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteAssetModelInput
impl Debug for DeleteAssetModelInput
source§impl PartialEq for DeleteAssetModelInput
impl PartialEq for DeleteAssetModelInput
source§fn eq(&self, other: &DeleteAssetModelInput) -> bool
fn eq(&self, other: &DeleteAssetModelInput) -> bool
self and other values to be equal, and is used
by ==.