/** * 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 Comprehend { namespace Model { /** *

Describes the dataset entity list for an entity recognizer model.

For * more information on how the input file is formatted, see Preparing * training data in the Comprehend Developer Guide.

See Also:

* AWS * API Reference

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

Specifies the Amazon S3 location where the entity list is located.

*/ inline const Aws::String& GetS3Uri() const{ return m_s3Uri; } /** *

Specifies the Amazon S3 location where the entity list is located.

*/ inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; } /** *

Specifies the Amazon S3 location where the entity list is located.

*/ inline void SetS3Uri(const Aws::String& value) { m_s3UriHasBeenSet = true; m_s3Uri = value; } /** *

Specifies the Amazon S3 location where the entity list is located.

*/ inline void SetS3Uri(Aws::String&& value) { m_s3UriHasBeenSet = true; m_s3Uri = std::move(value); } /** *

Specifies the Amazon S3 location where the entity list is located.

*/ inline void SetS3Uri(const char* value) { m_s3UriHasBeenSet = true; m_s3Uri.assign(value); } /** *

Specifies the Amazon S3 location where the entity list is located.

*/ inline DatasetEntityRecognizerEntityList& WithS3Uri(const Aws::String& value) { SetS3Uri(value); return *this;} /** *

Specifies the Amazon S3 location where the entity list is located.

*/ inline DatasetEntityRecognizerEntityList& WithS3Uri(Aws::String&& value) { SetS3Uri(std::move(value)); return *this;} /** *

Specifies the Amazon S3 location where the entity list is located.

*/ inline DatasetEntityRecognizerEntityList& WithS3Uri(const char* value) { SetS3Uri(value); return *this;} private: Aws::String m_s3Uri; bool m_s3UriHasBeenSet = false; }; } // namespace Model } // namespace Comprehend } // namespace Aws