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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFeatureGroup.FeatureDefinitionPropertystatic final classAn implementation forCfnFeatureGroup.FeatureDefinitionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFeatureName
The name of a feature.The type must be a string.
FeatureNamecannot be any of the following:is_deleted,write_time,api_invocation_time. -
getFeatureType
The value type of a feature.Valid values are Integral, Fractional, or String.
-
builder
-