Show / Hide Table of Contents

Class CfnFeatureGroup

Create a new FeatureGroup .

Inheritance
object
CfnElement
CfnRefElement
CfnResource
CfnFeatureGroup
Implements
IInspectable
IFeatureGroupRef
IConstruct
IDependable
IEnvironmentAware
ITaggable
Inherited Members
CfnResource.IsCfnResource(object)
CfnResource.AddDeletionOverride(string)
CfnResource.AddDependency(CfnResource)
CfnResource.AddDependsOn(CfnResource)
CfnResource.AddMetadata(string, object)
CfnResource.AddOverride(string, object)
CfnResource.AddPropertyDeletionOverride(string)
CfnResource.AddPropertyOverride(string, object)
CfnResource.ApplyRemovalPolicy(RemovalPolicy?, IRemovalPolicyOptions)
CfnResource.GetAtt(string, ResolutionTypeHint?)
CfnResource.GetMetadata(string)
CfnResource.ObtainDependencies()
CfnResource.ObtainResourceDependencies()
CfnResource.RemoveDependency(CfnResource)
CfnResource.ReplaceDependency(CfnResource, CfnResource)
CfnResource.ShouldSynthesize()
CfnResource.ToString()
CfnResource.ValidateProperties(object)
CfnResource.CfnOptions
CfnResource.CfnResourceType
CfnResource.Env
CfnResource.UpdatedProperites
CfnResource.UpdatedProperties
CfnRefElement.Ref
CfnElement.IsCfnElement(object)
CfnElement.OverrideLogicalId(string)
CfnElement.CreationStack
CfnElement.LogicalId
CfnElement.Stack
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFeatureGroup : CfnResource, IInspectable, IFeatureGroupRef, IConstruct, IDependable, IEnvironmentAware, ITaggable
Syntax (vb)
Public Class CfnFeatureGroup Inherits CfnResource Implements IInspectable, IFeatureGroupRef, IConstruct, IDependable, IEnvironmentAware, ITaggable
Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

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 cfnFeatureGroup = new CfnFeatureGroup(this, "MyCfnFeatureGroup", 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"
                 } },
                 ThroughputConfig = new ThroughputConfigProperty {
                     ThroughputMode = "throughputMode",

                     // the properties below are optional
                     ProvisionedReadCapacityUnits = 123,
                     ProvisionedWriteCapacityUnits = 123
                 }
             });

Synopsis

Constructors

CfnFeatureGroup(Construct, string, ICfnFeatureGroupProps)

Create a new AWS::SageMaker::FeatureGroup.

Properties

AttrCreationTime

The time a FeatureGroup was created.

AttrFeatureGroupStatus

A FeatureGroup status.

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

CfnProperties

Create a new FeatureGroup .

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.

FeatureGroupName

The name of the FeatureGroup .

FeatureGroupRef

A reference to a FeatureGroup resource.

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

Tag Manager which manages the tags for this resource.

TagsRaw

Tags used to define a FeatureGroup .

ThroughputConfig

Used to set feature group throughput configuration.

Methods

ArnForFeatureGroup(IFeatureGroupRef)

Create a new FeatureGroup .

FromFeatureGroupName(Construct, string, string)

Creates a new IFeatureGroupRef from a featureGroupName.

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

IsCfnFeatureGroup(object)

Checks whether the given object is a CfnFeatureGroup.

RenderProperties(IDictionary<string, object>)

Create a new FeatureGroup .

Constructors

CfnFeatureGroup(Construct, string, ICfnFeatureGroupProps)

Create a new AWS::SageMaker::FeatureGroup.

public CfnFeatureGroup(Construct scope, string id, ICfnFeatureGroupProps props)
Parameters
scope Construct

Scope in which this resource is defined.

id string

Construct identifier for this resource (unique in its scope).

props ICfnFeatureGroupProps

Resource properties.

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

Properties

AttrCreationTime

The time a FeatureGroup was created.

public virtual string AttrCreationTime { get; }
Property Value

string

Remarks

CloudformationAttribute: CreationTime

AttrFeatureGroupStatus

A FeatureGroup status.

public virtual string AttrFeatureGroupStatus { get; }
Property Value

string

Remarks

CloudformationAttribute: FeatureGroupStatus

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value

string

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

CfnProperties

Create a new FeatureGroup .

protected override IDictionary<string, object> CfnProperties { get; }
Property Value

IDictionary<string, object>

Overrides
CfnResource.CfnProperties
Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

Description

A free form description of a FeatureGroup .

public virtual string? Description { get; set; }
Property Value

string

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

EventTimeFeatureName

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

public virtual string EventTimeFeatureName { get; set; }
Property Value

string

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

FeatureDefinitions

A list of Feature s.

public virtual object FeatureDefinitions { get; set; }
Property Value

object

Remarks

Each Feature must include a FeatureName and a FeatureType .

Type union: either IResolvable or (either IResolvable or CfnFeatureGroup.IFeatureDefinitionProperty)[]

FeatureGroupName

The name of the FeatureGroup .

public virtual string FeatureGroupName { get; set; }
Property Value

string

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

FeatureGroupRef

A reference to a FeatureGroup resource.

public virtual IFeatureGroupReference FeatureGroupRef { get; }
Property Value

IFeatureGroupReference

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

OfflineStoreConfig

The configuration of an OfflineStore .

public virtual object? OfflineStoreConfig { get; set; }
Property Value

object

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

OnlineStoreConfig

The configuration of an OnlineStore .

public virtual object? OnlineStoreConfig { get; set; }
Property Value

object

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

RecordIdentifierFeatureName

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

public virtual string RecordIdentifierFeatureName { get; set; }
Property Value

string

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

RoleArn

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

public virtual string? RoleArn { get; set; }
Property Value

string

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

Tags

Tag Manager which manages the tags for this resource.

public virtual TagManager Tags { get; }
Property Value

TagManager

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

TagsRaw

Tags used to define a FeatureGroup .

public virtual ICfnTag[]? TagsRaw { get; set; }
Property Value

ICfnTag[]

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

ThroughputConfig

Used to set feature group throughput configuration.

public virtual object? ThroughputConfig { get; set; }
Property Value

object

Remarks

Type union: either IResolvable or CfnFeatureGroup.IThroughputConfigProperty

Methods

ArnForFeatureGroup(IFeatureGroupRef)

Create a new FeatureGroup .

public static string ArnForFeatureGroup(IFeatureGroupRef resource)
Parameters
resource IFeatureGroupRef
Returns

string

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

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 cfnFeatureGroup = new CfnFeatureGroup(this, "MyCfnFeatureGroup", 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"
                 } },
                 ThroughputConfig = new ThroughputConfigProperty {
                     ThroughputMode = "throughputMode",

                     // the properties below are optional
                     ProvisionedReadCapacityUnits = 123,
                     ProvisionedWriteCapacityUnits = 123
                 }
             });

FromFeatureGroupName(Construct, string, string)

Creates a new IFeatureGroupRef from a featureGroupName.

public static IFeatureGroupRef FromFeatureGroupName(Construct scope, string id, string featureGroupName)
Parameters
scope Construct
id string
featureGroupName string
Returns

IFeatureGroupRef

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

public virtual void Inspect(TreeInspector inspector)
Parameters
inspector TreeInspector

tree inspector to collect and process attributes.

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

IsCfnFeatureGroup(object)

Checks whether the given object is a CfnFeatureGroup.

public static bool IsCfnFeatureGroup(object x)
Parameters
x object
Returns

bool

Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

RenderProperties(IDictionary<string, object>)

Create a new FeatureGroup .

protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
props IDictionary<string, object>
Returns

IDictionary<string, object>

Overrides
CfnResource.RenderProperties(IDictionary<string, object>)
Remarks

A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record .

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features , a RecordIdentifierFeatureName , an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore . Check AWS service quotas to see the FeatureGroup s quota for your AWS account.

You must include at least one of <code>OnlineStoreConfig</code> and <code>OfflineStoreConfig</code> to create a <code>FeatureGroup</code> .

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

CloudformationResource: AWS::SageMaker::FeatureGroup

ExampleMetadata: fixture=_generated

Implements

IInspectable
IFeatureGroupRef
Constructs.IConstruct
Constructs.IDependable
IEnvironmentAware
ITaggable
Back to top Generated by DocFX