public static interface CfnFeatureGroup.FeatureDefinitionProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnFeatureGroup.FeatureDefinitionProperty.Builder
A builder for
CfnFeatureGroup.FeatureDefinitionProperty |
static class |
CfnFeatureGroup.FeatureDefinitionProperty.Jsii$Proxy
An implementation for
CfnFeatureGroup.FeatureDefinitionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnFeatureGroup.FeatureDefinitionProperty.Builder |
builder() |
java.lang.String |
getFeatureName()
The name of a feature.
|
java.lang.String |
getFeatureType()
The value type of a feature.
|
java.lang.String getFeatureName()
The type must be a string. FeatureName
cannot be any of the following: is_deleted
, write_time
, api_invocation_time
.
java.lang.String getFeatureType()
Valid values are Integral, Fractional, or String.
static CfnFeatureGroup.FeatureDefinitionProperty.Builder builder()