/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides information to verify the integrity of stored model artifacts.
* See Also:
AWS
* API Reference
Provides a hash value that uniquely identifies the stored model * artifacts.
*/ inline const Aws::String& GetArtifactDigest() const{ return m_artifactDigest; } /** *Provides a hash value that uniquely identifies the stored model * artifacts.
*/ inline bool ArtifactDigestHasBeenSet() const { return m_artifactDigestHasBeenSet; } /** *Provides a hash value that uniquely identifies the stored model * artifacts.
*/ inline void SetArtifactDigest(const Aws::String& value) { m_artifactDigestHasBeenSet = true; m_artifactDigest = value; } /** *Provides a hash value that uniquely identifies the stored model * artifacts.
*/ inline void SetArtifactDigest(Aws::String&& value) { m_artifactDigestHasBeenSet = true; m_artifactDigest = std::move(value); } /** *Provides a hash value that uniquely identifies the stored model * artifacts.
*/ inline void SetArtifactDigest(const char* value) { m_artifactDigestHasBeenSet = true; m_artifactDigest.assign(value); } /** *Provides a hash value that uniquely identifies the stored model * artifacts.
*/ inline ModelDigests& WithArtifactDigest(const Aws::String& value) { SetArtifactDigest(value); return *this;} /** *Provides a hash value that uniquely identifies the stored model * artifacts.
*/ inline ModelDigests& WithArtifactDigest(Aws::String&& value) { SetArtifactDigest(std::move(value)); return *this;} /** *Provides a hash value that uniquely identifies the stored model * artifacts.
*/ inline ModelDigests& WithArtifactDigest(const char* value) { SetArtifactDigest(value); return *this;} private: Aws::String m_artifactDigest; bool m_artifactDigestHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws