@Stability(value=Stable)
public static interface CfnFeatureGroup.FeatureDefinitionProperty
extends software.amazon.jsii.JsiiSerializable
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() |
String |
getFeatureName()
The name of a feature.
|
String |
getFeatureType()
The value type of a feature.
|
@Stability(value=Stable) @NotNull String getFeatureName()
The type must be a string. FeatureName cannot be any of the following: is_deleted , write_time , api_invocation_time .
@Stability(value=Stable) @NotNull String getFeatureType()
Valid values are Integral, Fractional, or String.
@Stability(value=Stable) static CfnFeatureGroup.FeatureDefinitionProperty.Builder builder()
Copyright © 2022. All rights reserved.