{-# 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.SageMaker.Types.ModelArtifacts -- 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.SageMaker.Types.ModelArtifacts 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 -- | Provides information about the location that is configured for storing -- model artifacts. -- -- Model artifacts are the output that results from training a model, and -- typically consist of trained parameters, a model definition that -- describes how to compute inferences, and other metadata. -- -- /See:/ 'newModelArtifacts' smart constructor. data ModelArtifacts = ModelArtifacts' { -- | The path of the S3 object that contains the model artifacts. For -- example, @s3:\/\/bucket-name\/keynameprefix\/model.tar.gz@. s3ModelArtifacts :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ModelArtifacts' 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: -- -- 's3ModelArtifacts', 'modelArtifacts_s3ModelArtifacts' - The path of the S3 object that contains the model artifacts. For -- example, @s3:\/\/bucket-name\/keynameprefix\/model.tar.gz@. newModelArtifacts :: -- | 's3ModelArtifacts' Prelude.Text -> ModelArtifacts newModelArtifacts pS3ModelArtifacts_ = ModelArtifacts' { s3ModelArtifacts = pS3ModelArtifacts_ } -- | The path of the S3 object that contains the model artifacts. For -- example, @s3:\/\/bucket-name\/keynameprefix\/model.tar.gz@. modelArtifacts_s3ModelArtifacts :: Lens.Lens' ModelArtifacts Prelude.Text modelArtifacts_s3ModelArtifacts = Lens.lens (\ModelArtifacts' {s3ModelArtifacts} -> s3ModelArtifacts) (\s@ModelArtifacts' {} a -> s {s3ModelArtifacts = a} :: ModelArtifacts) instance Data.FromJSON ModelArtifacts where parseJSON = Data.withObject "ModelArtifacts" ( \x -> ModelArtifacts' Prelude.<$> (x Data..: "S3ModelArtifacts") ) instance Prelude.Hashable ModelArtifacts where hashWithSalt _salt ModelArtifacts' {..} = _salt `Prelude.hashWithSalt` s3ModelArtifacts instance Prelude.NFData ModelArtifacts where rnf ModelArtifacts' {..} = Prelude.rnf s3ModelArtifacts