/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Comprehend { namespace Model { class AWS_COMPREHEND_API DescribeEntityRecognizerResult { public: DescribeEntityRecognizerResult(); DescribeEntityRecognizerResult(const Aws::AmazonWebServiceResult& result); DescribeEntityRecognizerResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Describes information associated with an entity recognizer.

*/ inline const EntityRecognizerProperties& GetEntityRecognizerProperties() const{ return m_entityRecognizerProperties; } /** *

Describes information associated with an entity recognizer.

*/ inline void SetEntityRecognizerProperties(const EntityRecognizerProperties& value) { m_entityRecognizerProperties = value; } /** *

Describes information associated with an entity recognizer.

*/ inline void SetEntityRecognizerProperties(EntityRecognizerProperties&& value) { m_entityRecognizerProperties = std::move(value); } /** *

Describes information associated with an entity recognizer.

*/ inline DescribeEntityRecognizerResult& WithEntityRecognizerProperties(const EntityRecognizerProperties& value) { SetEntityRecognizerProperties(value); return *this;} /** *

Describes information associated with an entity recognizer.

*/ inline DescribeEntityRecognizerResult& WithEntityRecognizerProperties(EntityRecognizerProperties&& value) { SetEntityRecognizerProperties(std::move(value)); return *this;} private: EntityRecognizerProperties m_entityRecognizerProperties; }; } // namespace Model } // namespace Comprehend } // namespace Aws