Module Values_1.DescribeFeatureMetadataResponseSource

Shows the metadata for a feature within a feature group.

Sourcetype nonrec t = {
  1. featureGroupArn : Values_0.FeatureGroupArn.t option;
    (*

    The Amazon Resource Number (ARN) of the feature group that contains the feature.

    *)
  2. featureGroupName : Values_0.FeatureGroupName.t option;
    (*

    The name of the feature group that you've specified.

    *)
  3. featureName : Values_0.FeatureName.t option;
    (*

    The name of the feature that you've specified.

    *)
  4. featureType : Values_0.FeatureType.t option;
    (*

    The data type of the feature.

    *)
  5. creationTime : Values_0.CreationTime.t option;
    (*

    A timestamp indicating when the feature was created.

    *)
  6. lastModifiedTime : Values_0.LastModifiedTime.t option;
    (*

    A timestamp indicating when the metadata for the feature group was modified. For example, if you add a parameter describing the feature, the timestamp changes to reflect the last time you

    *)
  7. description : FeatureDescription.t option;
    (*

    The description you added to describe the feature.

    *)
  8. parameters : FeatureParameters.t option;
    (*

    The key-value pairs that you added to describe the feature.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFound of Values_0.ResourceNotFound.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?featureGroupArn:??? -> ?featureGroupName:??? -> ?featureName:??? -> ?featureType:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?description:??? -> ?parameters:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of FeatureParameterKey.t ]) list ] list | `String of Values_0.FeatureGroupArn.t | `Timestamp of Values_0.CreationTime.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