Skip to content

Update Feature Metadata

sagemaker_update_feature_metadata R Documentation

Updates the description and parameters of the feature group

Description

Updates the description and parameters of the feature group.

Usage

sagemaker_update_feature_metadata(FeatureGroupName, FeatureName,
  Description, ParameterAdditions, ParameterRemovals)

Arguments

FeatureGroupName

[required] The name or Amazon Resource Name (ARN) of the feature group containing the feature that you're updating.

FeatureName

[required] The name of the feature that you're updating.

Description

A description that you can write to better describe the feature.

ParameterAdditions

A list of key-value pairs that you can add to better describe the feature.

ParameterRemovals

A list of parameter keys that you can specify to remove parameters that describe your feature.

Value

An empty list.

Request syntax

svc$update_feature_metadata(
  FeatureGroupName = "string",
  FeatureName = "string",
  Description = "string",
  ParameterAdditions = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  ParameterRemovals = list(
    "string"
  )
)