AWS Amazon SageMaker Feature Group

This page shows how to write Terraform and CloudFormation for Amazon SageMaker Feature Group and write them securely.

aws_sagemaker_feature_group (Terraform)

The Feature Group in Amazon SageMaker can be configured in Terraform with the resource name aws_sagemaker_feature_group. The following sections describe 1 example of how to use the resource and its parameters.

Example Usage from GitHub

aws_sagemaker_feature_group.tf#L1
resource "aws_sagemaker_feature_group" "test" {
  feature_group_name             = %[1]q
  record_identifier_feature_name = %[1]q
  event_time_feature_name        = %[1]q
  role_arn                       = aws_iam_role.test.arn

Review your Terraform file for AWS best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Provides a SageMaker Feature Group resource.

AWS::SageMaker::FeatureGroup (CloudFormation)

The FeatureGroup in SageMaker can be configured in CloudFormation with the resource name AWS::SageMaker::FeatureGroup. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Parameters

Explanation in CloudFormation Registry

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 FeatureGroups quota for your AWS account.

Important You must include at least one of OnlineStoreConfig and OfflineStoreConfig to create a FeatureGroup.

Frequently asked questions

What is AWS Amazon SageMaker Feature Group?

AWS Amazon SageMaker Feature Group is a resource for Amazon SageMaker of Amazon Web Service. Settings can be wrote in Terraform and CloudFormation.

Where can I find the example code for the AWS Amazon SageMaker Feature Group?

For Terraform, the JamesWoolfenden/check-encrypt source code example is useful. See the Terraform Example section for further details.