libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SageMaker.Types.FeatureDefinition

Description

 
Synopsis

Documentation

data FeatureDefinition Source #

A list of features. You must include FeatureName and FeatureType. Valid feature FeatureTypes are Integral, Fractional and String.

See: newFeatureDefinition smart constructor.

Constructors

FeatureDefinition' 

Fields

  • featureType :: Maybe FeatureType

    The value type of a feature. Valid values are Integral, Fractional, or String.

  • featureName :: Maybe Text

    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.

Instances

Instances details
Eq FeatureDefinition Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FeatureDefinition

Read FeatureDefinition Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FeatureDefinition

Show FeatureDefinition Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FeatureDefinition

Generic FeatureDefinition Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FeatureDefinition

Associated Types

type Rep FeatureDefinition :: Type -> Type #

NFData FeatureDefinition Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FeatureDefinition

Methods

rnf :: FeatureDefinition -> () #

Hashable FeatureDefinition Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FeatureDefinition

ToJSON FeatureDefinition Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FeatureDefinition

FromJSON FeatureDefinition Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FeatureDefinition

type Rep FeatureDefinition Source # 
Instance details

Defined in Amazonka.SageMaker.Types.FeatureDefinition

type Rep FeatureDefinition = D1 ('MetaData "FeatureDefinition" "Amazonka.SageMaker.Types.FeatureDefinition" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "FeatureDefinition'" 'PrefixI 'True) (S1 ('MetaSel ('Just "featureType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe FeatureType)) :*: S1 ('MetaSel ('Just "featureName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newFeatureDefinition :: FeatureDefinition Source #

Create a value of FeatureDefinition with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:featureType:FeatureDefinition', featureDefinition_featureType - The value type of a feature. Valid values are Integral, Fractional, or String.

$sel:featureName:FeatureDefinition', featureDefinition_featureName - 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.

featureDefinition_featureType :: Lens' FeatureDefinition (Maybe FeatureType) Source #

The value type of a feature. Valid values are Integral, Fractional, or String.

featureDefinition_featureName :: Lens' FeatureDefinition (Maybe Text) Source #

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.