Interface CfnFeatureGroup.FeatureDefinitionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFeatureGroup.FeatureDefinitionProperty.Jsii$Proxy
Enclosing class:
CfnFeatureGroup

@Stability(Stable) public static interface CfnFeatureGroup.FeatureDefinitionProperty extends software.amazon.jsii.JsiiSerializable
A list of features.

You must include FeatureName and FeatureType . Valid feature FeatureType s are Integral , Fractional and String .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 FeatureDefinitionProperty featureDefinitionProperty = FeatureDefinitionProperty.builder()
         .featureName("featureName")
         .featureType("featureType")
         .build();