/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Translate { namespace Model { /** */ class GetTerminologyRequest : public TranslateRequest { public: AWS_TRANSLATE_API GetTerminologyRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetTerminology"; } AWS_TRANSLATE_API Aws::String SerializePayload() const override; AWS_TRANSLATE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the custom terminology being retrieved.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the custom terminology being retrieved.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the custom terminology being retrieved.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the custom terminology being retrieved.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the custom terminology being retrieved.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the custom terminology being retrieved.

*/ inline GetTerminologyRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the custom terminology being retrieved.

*/ inline GetTerminologyRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the custom terminology being retrieved.

*/ inline GetTerminologyRequest& WithName(const char* value) { SetName(value); return *this;} /** *

The data format of the custom terminology being retrieved.

If you * don't specify this parameter, Amazon Translate returns a file with the same * format as the file that was imported to create the terminology.

If you * specify this parameter when you retrieve a multi-directional terminology * resource, you must specify the same format as the input file that was imported * to create it. Otherwise, Amazon Translate throws an error.

*/ inline const TerminologyDataFormat& GetTerminologyDataFormat() const{ return m_terminologyDataFormat; } /** *

The data format of the custom terminology being retrieved.

If you * don't specify this parameter, Amazon Translate returns a file with the same * format as the file that was imported to create the terminology.

If you * specify this parameter when you retrieve a multi-directional terminology * resource, you must specify the same format as the input file that was imported * to create it. Otherwise, Amazon Translate throws an error.

*/ inline bool TerminologyDataFormatHasBeenSet() const { return m_terminologyDataFormatHasBeenSet; } /** *

The data format of the custom terminology being retrieved.

If you * don't specify this parameter, Amazon Translate returns a file with the same * format as the file that was imported to create the terminology.

If you * specify this parameter when you retrieve a multi-directional terminology * resource, you must specify the same format as the input file that was imported * to create it. Otherwise, Amazon Translate throws an error.

*/ inline void SetTerminologyDataFormat(const TerminologyDataFormat& value) { m_terminologyDataFormatHasBeenSet = true; m_terminologyDataFormat = value; } /** *

The data format of the custom terminology being retrieved.

If you * don't specify this parameter, Amazon Translate returns a file with the same * format as the file that was imported to create the terminology.

If you * specify this parameter when you retrieve a multi-directional terminology * resource, you must specify the same format as the input file that was imported * to create it. Otherwise, Amazon Translate throws an error.

*/ inline void SetTerminologyDataFormat(TerminologyDataFormat&& value) { m_terminologyDataFormatHasBeenSet = true; m_terminologyDataFormat = std::move(value); } /** *

The data format of the custom terminology being retrieved.

If you * don't specify this parameter, Amazon Translate returns a file with the same * format as the file that was imported to create the terminology.

If you * specify this parameter when you retrieve a multi-directional terminology * resource, you must specify the same format as the input file that was imported * to create it. Otherwise, Amazon Translate throws an error.

*/ inline GetTerminologyRequest& WithTerminologyDataFormat(const TerminologyDataFormat& value) { SetTerminologyDataFormat(value); return *this;} /** *

The data format of the custom terminology being retrieved.

If you * don't specify this parameter, Amazon Translate returns a file with the same * format as the file that was imported to create the terminology.

If you * specify this parameter when you retrieve a multi-directional terminology * resource, you must specify the same format as the input file that was imported * to create it. Otherwise, Amazon Translate throws an error.

*/ inline GetTerminologyRequest& WithTerminologyDataFormat(TerminologyDataFormat&& value) { SetTerminologyDataFormat(std::move(value)); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; TerminologyDataFormat m_terminologyDataFormat; bool m_terminologyDataFormatHasBeenSet = false; }; } // namespace Model } // namespace Translate } // namespace Aws