/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ComprehendMedical { namespace Model { /** *

The information about the revision of the SNOMED-CT ontology in the * response. Specifically, the details include the SNOMED-CT edition, language, and * version date.

See Also:

AWS * API Reference

*/ class SNOMEDCTDetails { public: AWS_COMPREHENDMEDICAL_API SNOMEDCTDetails(); AWS_COMPREHENDMEDICAL_API SNOMEDCTDetails(Aws::Utils::Json::JsonView jsonValue); AWS_COMPREHENDMEDICAL_API SNOMEDCTDetails& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_COMPREHENDMEDICAL_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The edition of SNOMED-CT used. The edition used for the InferSNOMEDCT * editions is the US edition.

*/ inline const Aws::String& GetEdition() const{ return m_edition; } /** *

The edition of SNOMED-CT used. The edition used for the InferSNOMEDCT * editions is the US edition.

*/ inline bool EditionHasBeenSet() const { return m_editionHasBeenSet; } /** *

The edition of SNOMED-CT used. The edition used for the InferSNOMEDCT * editions is the US edition.

*/ inline void SetEdition(const Aws::String& value) { m_editionHasBeenSet = true; m_edition = value; } /** *

The edition of SNOMED-CT used. The edition used for the InferSNOMEDCT * editions is the US edition.

*/ inline void SetEdition(Aws::String&& value) { m_editionHasBeenSet = true; m_edition = std::move(value); } /** *

The edition of SNOMED-CT used. The edition used for the InferSNOMEDCT * editions is the US edition.

*/ inline void SetEdition(const char* value) { m_editionHasBeenSet = true; m_edition.assign(value); } /** *

The edition of SNOMED-CT used. The edition used for the InferSNOMEDCT * editions is the US edition.

*/ inline SNOMEDCTDetails& WithEdition(const Aws::String& value) { SetEdition(value); return *this;} /** *

The edition of SNOMED-CT used. The edition used for the InferSNOMEDCT * editions is the US edition.

*/ inline SNOMEDCTDetails& WithEdition(Aws::String&& value) { SetEdition(std::move(value)); return *this;} /** *

The edition of SNOMED-CT used. The edition used for the InferSNOMEDCT * editions is the US edition.

*/ inline SNOMEDCTDetails& WithEdition(const char* value) { SetEdition(value); return *this;} /** *

The language used in the SNOMED-CT ontology. All Amazon Comprehend Medical * operations are US English (en).

*/ inline const Aws::String& GetLanguage() const{ return m_language; } /** *

The language used in the SNOMED-CT ontology. All Amazon Comprehend Medical * operations are US English (en).

*/ inline bool LanguageHasBeenSet() const { return m_languageHasBeenSet; } /** *

The language used in the SNOMED-CT ontology. All Amazon Comprehend Medical * operations are US English (en).

*/ inline void SetLanguage(const Aws::String& value) { m_languageHasBeenSet = true; m_language = value; } /** *

The language used in the SNOMED-CT ontology. All Amazon Comprehend Medical * operations are US English (en).

*/ inline void SetLanguage(Aws::String&& value) { m_languageHasBeenSet = true; m_language = std::move(value); } /** *

The language used in the SNOMED-CT ontology. All Amazon Comprehend Medical * operations are US English (en).

*/ inline void SetLanguage(const char* value) { m_languageHasBeenSet = true; m_language.assign(value); } /** *

The language used in the SNOMED-CT ontology. All Amazon Comprehend Medical * operations are US English (en).

*/ inline SNOMEDCTDetails& WithLanguage(const Aws::String& value) { SetLanguage(value); return *this;} /** *

The language used in the SNOMED-CT ontology. All Amazon Comprehend Medical * operations are US English (en).

*/ inline SNOMEDCTDetails& WithLanguage(Aws::String&& value) { SetLanguage(std::move(value)); return *this;} /** *

The language used in the SNOMED-CT ontology. All Amazon Comprehend Medical * operations are US English (en).

*/ inline SNOMEDCTDetails& WithLanguage(const char* value) { SetLanguage(value); return *this;} /** *

The version date of the SNOMED-CT ontology used.

*/ inline const Aws::String& GetVersionDate() const{ return m_versionDate; } /** *

The version date of the SNOMED-CT ontology used.

*/ inline bool VersionDateHasBeenSet() const { return m_versionDateHasBeenSet; } /** *

The version date of the SNOMED-CT ontology used.

*/ inline void SetVersionDate(const Aws::String& value) { m_versionDateHasBeenSet = true; m_versionDate = value; } /** *

The version date of the SNOMED-CT ontology used.

*/ inline void SetVersionDate(Aws::String&& value) { m_versionDateHasBeenSet = true; m_versionDate = std::move(value); } /** *

The version date of the SNOMED-CT ontology used.

*/ inline void SetVersionDate(const char* value) { m_versionDateHasBeenSet = true; m_versionDate.assign(value); } /** *

The version date of the SNOMED-CT ontology used.

*/ inline SNOMEDCTDetails& WithVersionDate(const Aws::String& value) { SetVersionDate(value); return *this;} /** *

The version date of the SNOMED-CT ontology used.

*/ inline SNOMEDCTDetails& WithVersionDate(Aws::String&& value) { SetVersionDate(std::move(value)); return *this;} /** *

The version date of the SNOMED-CT ontology used.

*/ inline SNOMEDCTDetails& WithVersionDate(const char* value) { SetVersionDate(value); return *this;} private: Aws::String m_edition; bool m_editionHasBeenSet = false; Aws::String m_language; bool m_languageHasBeenSet = false; Aws::String m_versionDate; bool m_versionDateHasBeenSet = false; }; } // namespace Model } // namespace ComprehendMedical } // namespace Aws