{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.IoTSiteWise.Types.AssetProperty -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.IoTSiteWise.Types.AssetProperty where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.IoTSiteWise.Types.PropertyDataType import Amazonka.IoTSiteWise.Types.PropertyNotification import qualified Amazonka.Prelude as Prelude -- | Contains asset property information. -- -- /See:/ 'newAssetProperty' smart constructor. data AssetProperty = AssetProperty' { -- | The alias that identifies the property, such as an OPC-UA server data -- stream path (for example, -- @\/company\/windfarm\/3\/turbine\/7\/temperature@). For more -- information, see -- -- in the /IoT SiteWise User Guide/. alias :: Prelude.Maybe Prelude.Text, -- | The data type of the structure for this property. This parameter exists -- on properties that have the @STRUCT@ data type. dataTypeSpec :: Prelude.Maybe Prelude.Text, -- | The asset property\'s notification topic and state. For more -- information, see -- . notification :: Prelude.Maybe PropertyNotification, -- | The unit (such as @Newtons@ or @RPM@) of the asset property. unit :: Prelude.Maybe Prelude.Text, -- | The ID of the asset property. id :: Prelude.Text, -- | The name of the property. name :: Prelude.Text, -- | The data type of the asset property. dataType :: PropertyDataType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AssetProperty' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'alias', 'assetProperty_alias' - The alias that identifies the property, such as an OPC-UA server data -- stream path (for example, -- @\/company\/windfarm\/3\/turbine\/7\/temperature@). For more -- information, see -- -- in the /IoT SiteWise User Guide/. -- -- 'dataTypeSpec', 'assetProperty_dataTypeSpec' - The data type of the structure for this property. This parameter exists -- on properties that have the @STRUCT@ data type. -- -- 'notification', 'assetProperty_notification' - The asset property\'s notification topic and state. For more -- information, see -- . -- -- 'unit', 'assetProperty_unit' - The unit (such as @Newtons@ or @RPM@) of the asset property. -- -- 'id', 'assetProperty_id' - The ID of the asset property. -- -- 'name', 'assetProperty_name' - The name of the property. -- -- 'dataType', 'assetProperty_dataType' - The data type of the asset property. newAssetProperty :: -- | 'id' Prelude.Text -> -- | 'name' Prelude.Text -> -- | 'dataType' PropertyDataType -> AssetProperty newAssetProperty pId_ pName_ pDataType_ = AssetProperty' { alias = Prelude.Nothing, dataTypeSpec = Prelude.Nothing, notification = Prelude.Nothing, unit = Prelude.Nothing, id = pId_, name = pName_, dataType = pDataType_ } -- | The alias that identifies the property, such as an OPC-UA server data -- stream path (for example, -- @\/company\/windfarm\/3\/turbine\/7\/temperature@). For more -- information, see -- -- in the /IoT SiteWise User Guide/. assetProperty_alias :: Lens.Lens' AssetProperty (Prelude.Maybe Prelude.Text) assetProperty_alias = Lens.lens (\AssetProperty' {alias} -> alias) (\s@AssetProperty' {} a -> s {alias = a} :: AssetProperty) -- | The data type of the structure for this property. This parameter exists -- on properties that have the @STRUCT@ data type. assetProperty_dataTypeSpec :: Lens.Lens' AssetProperty (Prelude.Maybe Prelude.Text) assetProperty_dataTypeSpec = Lens.lens (\AssetProperty' {dataTypeSpec} -> dataTypeSpec) (\s@AssetProperty' {} a -> s {dataTypeSpec = a} :: AssetProperty) -- | The asset property\'s notification topic and state. For more -- information, see -- . assetProperty_notification :: Lens.Lens' AssetProperty (Prelude.Maybe PropertyNotification) assetProperty_notification = Lens.lens (\AssetProperty' {notification} -> notification) (\s@AssetProperty' {} a -> s {notification = a} :: AssetProperty) -- | The unit (such as @Newtons@ or @RPM@) of the asset property. assetProperty_unit :: Lens.Lens' AssetProperty (Prelude.Maybe Prelude.Text) assetProperty_unit = Lens.lens (\AssetProperty' {unit} -> unit) (\s@AssetProperty' {} a -> s {unit = a} :: AssetProperty) -- | The ID of the asset property. assetProperty_id :: Lens.Lens' AssetProperty Prelude.Text assetProperty_id = Lens.lens (\AssetProperty' {id} -> id) (\s@AssetProperty' {} a -> s {id = a} :: AssetProperty) -- | The name of the property. assetProperty_name :: Lens.Lens' AssetProperty Prelude.Text assetProperty_name = Lens.lens (\AssetProperty' {name} -> name) (\s@AssetProperty' {} a -> s {name = a} :: AssetProperty) -- | The data type of the asset property. assetProperty_dataType :: Lens.Lens' AssetProperty PropertyDataType assetProperty_dataType = Lens.lens (\AssetProperty' {dataType} -> dataType) (\s@AssetProperty' {} a -> s {dataType = a} :: AssetProperty) instance Data.FromJSON AssetProperty where parseJSON = Data.withObject "AssetProperty" ( \x -> AssetProperty' Prelude.<$> (x Data..:? "alias") Prelude.<*> (x Data..:? "dataTypeSpec") Prelude.<*> (x Data..:? "notification") Prelude.<*> (x Data..:? "unit") Prelude.<*> (x Data..: "id") Prelude.<*> (x Data..: "name") Prelude.<*> (x Data..: "dataType") ) instance Prelude.Hashable AssetProperty where hashWithSalt _salt AssetProperty' {..} = _salt `Prelude.hashWithSalt` alias `Prelude.hashWithSalt` dataTypeSpec `Prelude.hashWithSalt` notification `Prelude.hashWithSalt` unit `Prelude.hashWithSalt` id `Prelude.hashWithSalt` name `Prelude.hashWithSalt` dataType instance Prelude.NFData AssetProperty where rnf AssetProperty' {..} = Prelude.rnf alias `Prelude.seq` Prelude.rnf dataTypeSpec `Prelude.seq` Prelude.rnf notification `Prelude.seq` Prelude.rnf unit `Prelude.seq` Prelude.rnf id `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf dataType