SageMaker / Client / update_feature_metadata

update_feature_metadata#

SageMaker.Client.update_feature_metadata(**kwargs)#

Updates the description and parameters of the feature group.

See also: AWS API Documentation

Request Syntax

response = client.update_feature_metadata(
    FeatureGroupName='string',
    FeatureName='string',
    Description='string',
    ParameterAdditions=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ],
    ParameterRemovals=[
        'string',
    ]
)
Parameters:
  • FeatureGroupName (string) –

    [REQUIRED]

    The name or Amazon Resource Name (ARN) of the feature group containing the feature that you’re updating.

  • FeatureName (string) –

    [REQUIRED]

    The name of the feature that you’re updating.

  • Description (string) – A description that you can write to better describe the feature.

  • ParameterAdditions (list) –

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

    • (dict) –

      A key-value pair that you specify to describe the feature.

      • Key (string) –

        A key that must contain a value to describe the feature.

      • Value (string) –

        The value that belongs to a key.

  • ParameterRemovals (list) –

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

    • (string) –

Returns:

None

Exceptions