Show / Hide Table of Contents

Class CfnFeatureGroupProps

Properties for defining a CfnFeatureGroup.

Inheritance
System.Object
CfnFeatureGroupProps
Implements
ICfnFeatureGroupProps
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.AWS.Sagemaker.dll
Syntax (csharp)
public class CfnFeatureGroupProps : Object, ICfnFeatureGroupProps
Syntax (vb)
Public Class CfnFeatureGroupProps
    Inherits Object
    Implements ICfnFeatureGroupProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-featuregroup.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 offlineStoreConfig;
var onlineStoreConfig;

var cfnFeatureGroupProps = new CfnFeatureGroupProps {
    EventTimeFeatureName = "eventTimeFeatureName",
    FeatureDefinitions = new [] { new FeatureDefinitionProperty {
        FeatureName = "featureName",
        FeatureType = "featureType"
    } },
    FeatureGroupName = "featureGroupName",
    RecordIdentifierFeatureName = "recordIdentifierFeatureName",

    // the properties below are optional
    Description = "description",
    OfflineStoreConfig = offlineStoreConfig,
    OnlineStoreConfig = onlineStoreConfig,
    RoleArn = "roleArn",
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } }
};

Synopsis

Constructors

CfnFeatureGroupProps()

Properties

Description

A free form description of a FeatureGroup .

EventTimeFeatureName

The name of the feature that stores the EventTime of a Record in a FeatureGroup .

FeatureDefinitions

A list of Feature s. Each Feature must include a FeatureName and a FeatureType .

FeatureGroupName

The name of the FeatureGroup .

OfflineStoreConfig

The configuration of an OfflineStore .

OnlineStoreConfig

The configuration of an OnlineStore .

RecordIdentifierFeatureName

The name of the Feature whose value uniquely identifies a Record defined in the FeatureGroup FeatureDefinitions .

RoleArn

The Amazon Resource Name (ARN) of the IAM execution role used to create the feature group.

Tags

Tags used to define a FeatureGroup .

Constructors

CfnFeatureGroupProps()

public CfnFeatureGroupProps()

Properties

Description

A free form description of a FeatureGroup .

public string Description { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-featuregroup.html#cfn-sagemaker-featuregroup-description

EventTimeFeatureName

The name of the feature that stores the EventTime of a Record in a FeatureGroup .

public string EventTimeFeatureName { get; set; }
Property Value

System.String

Remarks

A EventTime is point in time when a new event occurs that corresponds to the creation or update of a Record in FeatureGroup . All Records in the FeatureGroup must have a corresponding EventTime .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-featuregroup.html#cfn-sagemaker-featuregroup-eventtimefeaturename

FeatureDefinitions

A list of Feature s. Each Feature must include a FeatureName and a FeatureType .

public object FeatureDefinitions { get; set; }
Property Value

System.Object

Remarks

Valid FeatureType s are Integral , Fractional and String .

FeatureName s cannot be any of the following: is_deleted , write_time , api_invocation_time .

You can create up to 2,500 FeatureDefinition s per FeatureGroup .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-featuregroup.html#cfn-sagemaker-featuregroup-featuredefinitions

FeatureGroupName

The name of the FeatureGroup .

public string FeatureGroupName { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-featuregroup.html#cfn-sagemaker-featuregroup-featuregroupname

OfflineStoreConfig

The configuration of an OfflineStore .

public object OfflineStoreConfig { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-featuregroup.html#cfn-sagemaker-featuregroup-offlinestoreconfig

OnlineStoreConfig

The configuration of an OnlineStore .

public object OnlineStoreConfig { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-featuregroup.html#cfn-sagemaker-featuregroup-onlinestoreconfig

RecordIdentifierFeatureName

The name of the Feature whose value uniquely identifies a Record defined in the FeatureGroup FeatureDefinitions .

public string RecordIdentifierFeatureName { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-featuregroup.html#cfn-sagemaker-featuregroup-recordidentifierfeaturename

RoleArn

The Amazon Resource Name (ARN) of the IAM execution role used to create the feature group.

public string RoleArn { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-featuregroup.html#cfn-sagemaker-featuregroup-rolearn

Tags

Tags used to define a FeatureGroup .

public ICfnTag[] Tags { get; set; }
Property Value

ICfnTag[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-featuregroup.html#cfn-sagemaker-featuregroup-tags

Implements

ICfnFeatureGroupProps
Back to top Generated by DocFX