interface FeatureDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnFeatureGroupPropsMixin.FeatureDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnFeatureGroupPropsMixin_FeatureDefinitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnFeatureGroupPropsMixin.FeatureDefinitionProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnFeatureGroupPropsMixin.FeatureDefinitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnFeatureGroupPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const featureDefinitionProperty: sagemaker_mixins.CfnFeatureGroupPropsMixin.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
(optional)
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
(optional)
The value type of a feature.
Valid values are Integral, Fractional, or String.

.NET
Go
Java
Python
TypeScript