/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of features. You must include FeatureName
and
* FeatureType
. Valid feature FeatureType
s are
* Integral
, Fractional
and String
.
* See Also:
AWS
* API Reference
The name of a feature. The type must be a string. FeatureName
* cannot be any of the following: is_deleted
,
* write_time
, api_invocation_time
.
The name of a feature. The type must be a string. FeatureName
* cannot be any of the following: is_deleted
,
* write_time
, api_invocation_time
.
The name of a feature. The type must be a string. FeatureName
* cannot be any of the following: is_deleted
,
* write_time
, api_invocation_time
.
The name of a feature. The type must be a string. FeatureName
* cannot be any of the following: is_deleted
,
* write_time
, api_invocation_time
.
The name of a feature. The type must be a string. FeatureName
* cannot be any of the following: is_deleted
,
* write_time
, api_invocation_time
.
The name of a feature. The type must be a string. FeatureName
* cannot be any of the following: is_deleted
,
* write_time
, api_invocation_time
.
The name of a feature. The type must be a string. FeatureName
* cannot be any of the following: is_deleted
,
* write_time
, api_invocation_time
.
The name of a feature. The type must be a string. FeatureName
* cannot be any of the following: is_deleted
,
* write_time
, api_invocation_time
.
The value type of a feature. Valid values are Integral, Fractional, or * String.
*/ inline const FeatureType& GetFeatureType() const{ return m_featureType; } /** *The value type of a feature. Valid values are Integral, Fractional, or * String.
*/ inline bool FeatureTypeHasBeenSet() const { return m_featureTypeHasBeenSet; } /** *The value type of a feature. Valid values are Integral, Fractional, or * String.
*/ inline void SetFeatureType(const FeatureType& value) { m_featureTypeHasBeenSet = true; m_featureType = value; } /** *The value type of a feature. Valid values are Integral, Fractional, or * String.
*/ inline void SetFeatureType(FeatureType&& value) { m_featureTypeHasBeenSet = true; m_featureType = std::move(value); } /** *The value type of a feature. Valid values are Integral, Fractional, or * String.
*/ inline FeatureDefinition& WithFeatureType(const FeatureType& value) { SetFeatureType(value); return *this;} /** *The value type of a feature. Valid values are Integral, Fractional, or * String.
*/ inline FeatureDefinition& WithFeatureType(FeatureType&& value) { SetFeatureType(std::move(value)); return *this;} private: Aws::String m_featureName; bool m_featureNameHasBeenSet = false; FeatureType m_featureType; bool m_featureTypeHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws