Show / Hide Table of Contents

Class CfnFeatureGroup.FeatureDefinitionProperty

A list of features.

Inheritance
object
CfnFeatureGroup.FeatureDefinitionProperty
Implements
CfnFeatureGroup.IFeatureDefinitionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFeatureGroup.FeatureDefinitionProperty : CfnFeatureGroup.IFeatureDefinitionProperty
Syntax (vb)
Public Class CfnFeatureGroup.FeatureDefinitionProperty Implements CfnFeatureGroup.IFeatureDefinitionProperty
Remarks

You must include FeatureName and FeatureType . Valid feature FeatureType s are Integral , Fractional and String .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-featuregroup-featuredefinition.html

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()

A list of features.

Properties

FeatureName

The name of a feature.

FeatureType

The value type of a feature.

Constructors

FeatureDefinitionProperty()

A list of features.

public FeatureDefinitionProperty()
Remarks

You must include FeatureName and FeatureType . Valid feature FeatureType s are Integral , Fractional and String .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-featuregroup-featuredefinition.html

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"
             };

Properties

FeatureName

The name of a feature.

public string FeatureName { get; set; }
Property Value

string

Remarks

The type must be a string. FeatureName cannot be any of the following: is_deleted , write_time , api_invocation_time .

The name:

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-featuregroup-featuredefinition.html#cfn-sagemaker-featuregroup-featuredefinition-featurename

    FeatureType

    The value type of a feature.

    public string FeatureType { get; set; }
    Property Value

    string

    Remarks

    Valid values are Integral, Fractional, or String.

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-featuregroup-featuredefinition.html#cfn-sagemaker-featuregroup-featuredefinition-featuretype

    Implements

    CfnFeatureGroup.IFeatureDefinitionProperty
    Back to top Generated by DocFX