interface FeatureDefinitionProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnFeatureGroup.FeatureDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnFeatureGroup_FeatureDefinitionProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnFeatureGroup.FeatureDefinitionProperty |
Python | aws_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
Name | Type | Description |
---|---|---|
feature | string | The name of a feature. |
feature | string | The 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
.
The name:
- Must start with an alphanumeric character.
- Can only include alphanumeric characters, underscores, and hyphens. Spaces are not allowed.
featureType
Type:
string
The value type of a feature.
Valid values are Integral, Fractional, or String.