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

The algorithm-specific parameters that are associated with the machine * learning transform.

See Also:

AWS * API Reference

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

The type of machine learning transform.

For information about the * types of machine learning transforms, see Creating * Machine Learning Transforms.

*/ inline const TransformType& GetTransformType() const{ return m_transformType; } /** *

The type of machine learning transform.

For information about the * types of machine learning transforms, see Creating * Machine Learning Transforms.

*/ inline bool TransformTypeHasBeenSet() const { return m_transformTypeHasBeenSet; } /** *

The type of machine learning transform.

For information about the * types of machine learning transforms, see Creating * Machine Learning Transforms.

*/ inline void SetTransformType(const TransformType& value) { m_transformTypeHasBeenSet = true; m_transformType = value; } /** *

The type of machine learning transform.

For information about the * types of machine learning transforms, see Creating * Machine Learning Transforms.

*/ inline void SetTransformType(TransformType&& value) { m_transformTypeHasBeenSet = true; m_transformType = std::move(value); } /** *

The type of machine learning transform.

For information about the * types of machine learning transforms, see Creating * Machine Learning Transforms.

*/ inline TransformParameters& WithTransformType(const TransformType& value) { SetTransformType(value); return *this;} /** *

The type of machine learning transform.

For information about the * types of machine learning transforms, see Creating * Machine Learning Transforms.

*/ inline TransformParameters& WithTransformType(TransformType&& value) { SetTransformType(std::move(value)); return *this;} /** *

The parameters for the find matches algorithm.

*/ inline const FindMatchesParameters& GetFindMatchesParameters() const{ return m_findMatchesParameters; } /** *

The parameters for the find matches algorithm.

*/ inline bool FindMatchesParametersHasBeenSet() const { return m_findMatchesParametersHasBeenSet; } /** *

The parameters for the find matches algorithm.

*/ inline void SetFindMatchesParameters(const FindMatchesParameters& value) { m_findMatchesParametersHasBeenSet = true; m_findMatchesParameters = value; } /** *

The parameters for the find matches algorithm.

*/ inline void SetFindMatchesParameters(FindMatchesParameters&& value) { m_findMatchesParametersHasBeenSet = true; m_findMatchesParameters = std::move(value); } /** *

The parameters for the find matches algorithm.

*/ inline TransformParameters& WithFindMatchesParameters(const FindMatchesParameters& value) { SetFindMatchesParameters(value); return *this;} /** *

The parameters for the find matches algorithm.

*/ inline TransformParameters& WithFindMatchesParameters(FindMatchesParameters&& value) { SetFindMatchesParameters(std::move(value)); return *this;} private: TransformType m_transformType; bool m_transformTypeHasBeenSet = false; FindMatchesParameters m_findMatchesParameters; bool m_findMatchesParametersHasBeenSet = false; }; } // namespace Model } // namespace Glue } // namespace Aws