{-# 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.SageMakerEdge.Types.Checksum -- 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.SageMakerEdge.Types.Checksum where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import Amazonka.SageMakerEdge.Types.ChecksumType -- | Information about the checksum of a model deployed on a device. -- -- /See:/ 'newChecksum' smart constructor. data Checksum = Checksum' { -- | The checksum of the model. sum :: Prelude.Maybe Prelude.Text, -- | The type of the checksum. type' :: Prelude.Maybe ChecksumType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Checksum' 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: -- -- 'sum', 'checksum_sum' - The checksum of the model. -- -- 'type'', 'checksum_type' - The type of the checksum. newChecksum :: Checksum newChecksum = Checksum' { sum = Prelude.Nothing, type' = Prelude.Nothing } -- | The checksum of the model. checksum_sum :: Lens.Lens' Checksum (Prelude.Maybe Prelude.Text) checksum_sum = Lens.lens (\Checksum' {sum} -> sum) (\s@Checksum' {} a -> s {sum = a} :: Checksum) -- | The type of the checksum. checksum_type :: Lens.Lens' Checksum (Prelude.Maybe ChecksumType) checksum_type = Lens.lens (\Checksum' {type'} -> type') (\s@Checksum' {} a -> s {type' = a} :: Checksum) instance Data.FromJSON Checksum where parseJSON = Data.withObject "Checksum" ( \x -> Checksum' Prelude.<$> (x Data..:? "Sum") Prelude.<*> (x Data..:? "Type") ) instance Prelude.Hashable Checksum where hashWithSalt _salt Checksum' {..} = _salt `Prelude.hashWithSalt` sum `Prelude.hashWithSalt` type' instance Prelude.NFData Checksum where rnf Checksum' {..} = Prelude.rnf sum `Prelude.seq` Prelude.rnf type'