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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFeatureGroup.FeatureDefinitionProperty
static final class
An 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.
FeatureName
cannot 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
-