Module Values_2.UpdateFeatureMetadataRequestSource

Updates the description and parameters of the feature group.

Sourcetype nonrec t = {
  1. featureGroupName : Values_1.FeatureGroupNameOrArn.t;
    (*

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

    *)
  2. featureName : Values_0.FeatureName.t;
    (*

    The name of the feature that you're updating.

    *)
  3. description : Values_1.FeatureDescription.t option;
    (*

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

    *)
  4. parameterAdditions : FeatureParameterAdditions.t option;
    (*

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

    *)
  5. parameterRemovals : FeatureParameterRemovals.t option;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?parameterAdditions:??? -> ?parameterRemovals:??? -> featureGroupName:Values_1.FeatureGroupNameOrArn.t -> featureName:Values_0.FeatureName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of Values_1.FeatureParameterKey.t | `Structure of (string * [> `String of string ]) list ] list | `String of Values_1.FeatureGroupNameOrArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t