libZSservicesZSamazonka-sagemaker-featurestore-runtimeZSamazonka-sagemaker-featurestore-runtime
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.SageMakerFeatureStoreRuntime.Types.FeatureValue

Description

 
Synopsis

Documentation

data FeatureValue Source #

The value associated with a feature.

See: newFeatureValue smart constructor.

Constructors

FeatureValue' 

Fields

  • featureName :: Text

    The name of a feature that a feature value corresponds to.

  • valueAsString :: Text

    The value associated with a feature, in string format. Note that features types can be String, Integral, or Fractional. This value represents all three types as a string.

Instances

Instances details
Eq FeatureValue Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.Types.FeatureValue

Read FeatureValue Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.Types.FeatureValue

Show FeatureValue Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.Types.FeatureValue

Generic FeatureValue Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.Types.FeatureValue

Associated Types

type Rep FeatureValue :: Type -> Type #

NFData FeatureValue Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.Types.FeatureValue

Methods

rnf :: FeatureValue -> () #

Hashable FeatureValue Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.Types.FeatureValue

ToJSON FeatureValue Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.Types.FeatureValue

FromJSON FeatureValue Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.Types.FeatureValue

type Rep FeatureValue Source # 
Instance details

Defined in Amazonka.SageMakerFeatureStoreRuntime.Types.FeatureValue

type Rep FeatureValue = D1 ('MetaData "FeatureValue" "Amazonka.SageMakerFeatureStoreRuntime.Types.FeatureValue" "libZSservicesZSamazonka-sagemaker-featurestore-runtimeZSamazonka-sagemaker-featurestore-runtime" 'False) (C1 ('MetaCons "FeatureValue'" 'PrefixI 'True) (S1 ('MetaSel ('Just "featureName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "valueAsString") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newFeatureValue Source #

Create a value of FeatureValue 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:featureName:FeatureValue', featureValue_featureName - The name of a feature that a feature value corresponds to.

$sel:valueAsString:FeatureValue', featureValue_valueAsString - The value associated with a feature, in string format. Note that features types can be String, Integral, or Fractional. This value represents all three types as a string.

featureValue_featureName :: Lens' FeatureValue Text Source #

The name of a feature that a feature value corresponds to.

featureValue_valueAsString :: Lens' FeatureValue Text Source #

The value associated with a feature, in string format. Note that features types can be String, Integral, or Fractional. This value represents all three types as a string.