Class CfnFeatureGroup.FeatureDefinitionProperty
A list of features.
Inheritance
System.Object
CfnFeatureGroup.FeatureDefinitionProperty
Implements
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FeatureDefinitionProperty : Object, CfnFeatureGroup.IFeatureDefinitionProperty
Syntax (vb)
Public Class FeatureDefinitionProperty
Inherits Object
Implements CfnFeatureGroup.IFeatureDefinitionProperty
Remarks
You must include FeatureName
and FeatureType
. Valid feature FeatureType
s are Integral
, Fractional
and String
.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var featureDefinitionProperty = new FeatureDefinitionProperty {
FeatureName = "featureName",
FeatureType = "featureType"
};
Synopsis
Constructors
FeatureDefinitionProperty() |
Properties
FeatureName | The name of a feature. |
FeatureType | The value type of a feature. |
Constructors
FeatureDefinitionProperty()
public FeatureDefinitionProperty()
Properties
FeatureName
The name of a feature.
public string FeatureName { get; set; }
Property Value
System.String
Remarks
The type must be a string. FeatureName
cannot be any of the following: is_deleted
, write_time
, api_invocation_time
.
The name:
FeatureType
The value type of a feature.
public string FeatureType { get; set; }
Property Value
System.String
Remarks
Valid values are Integral, Fractional, or String.