Create a new FeatureGroup
Create a new FeatureGroup
. 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 OnlineStoreConfig
and
OfflineStoreConfig
to create a FeatureGroup
.
sagemaker_create_feature_group(FeatureGroupName, RecordIdentifierFeatureName, EventTimeFeatureName, FeatureDefinitions, OnlineStoreConfig, OfflineStoreConfig, RoleArn, Description, Tags)
FeatureGroupName |
[required] The name of the
|
RecordIdentifierFeatureName |
[required] The name of the You use the This name:
|
EventTimeFeatureName |
[required] The name of the feature that stores the An An
|
FeatureDefinitions |
[required] A list of Valid feature
You can create up to 2,500 |
OnlineStoreConfig |
You can turn the You can also include an AWS KMS key ID ( |
OfflineStoreConfig |
Use this to configure an
To learn more about this parameter, see OfflineStoreConfig. |
RoleArn |
The Amazon Resource Name (ARN) of the IAM execution role used to persist
data into the |
Description |
A free-form description of a |
Tags |
Tags used to identify |
A list with the following syntax:
list( FeatureGroupArn = "string" )
svc$create_feature_group( FeatureGroupName = "string", RecordIdentifierFeatureName = "string", EventTimeFeatureName = "string", FeatureDefinitions = list( list( FeatureName = "string", FeatureType = "Integral"|"Fractional"|"String" ) ), OnlineStoreConfig = list( SecurityConfig = list( KmsKeyId = "string" ), EnableOnlineStore = TRUE|FALSE ), OfflineStoreConfig = list( S3StorageConfig = list( S3Uri = "string", KmsKeyId = "string" ), DisableGlueTableCreation = TRUE|FALSE, DataCatalogConfig = list( TableName = "string", Catalog = "string", Database = "string" ) ), RoleArn = "string", Description = "string", Tags = list( list( Key = "string", Value = "string" ) ) )
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.