aws-cdk-lib.aws_sagemaker.CfnFeatureGroup.FeatureDefinitionProperty

interface FeatureDefinitionProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnFeatureGroup.FeatureDefinitionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnFeatureGroup_FeatureDefinitionProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnFeatureGroup.FeatureDefinitionProperty
Pythonaws_cdk.aws_sagemaker.CfnFeatureGroup.FeatureDefinitionProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnFeatureGroup » FeatureDefinitionProperty

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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const featureDefinitionProperty: sagemaker.CfnFeatureGroup.FeatureDefinitionProperty = {
  featureName: 'featureName',
  featureType: 'featureType',
};

Properties

NameTypeDescription
featureNamestringThe name of a feature.
featureTypestringThe value type of a feature.

featureName

Type: string

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 .


featureType

Type: string

The value type of a feature.

Valid values are Integral, Fractional, or String.