Module Values_2.FeatureMetadataSource

The metadata for a feature. It can either be metadata that you specify, or metadata that is updated automatically.

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

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

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

    The name of the feature group containing the feature.

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

    The name of feature.

    *)
  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 feature was last modified.

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

    An optional description that you specify to better describe the feature.

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

    Optional key-value pairs that you specify to better describe the feature.

    *)
}
Sourceval make : ?featureGroupArn:??? -> ?featureGroupName:??? -> ?featureName:??? -> ?featureType:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?description:??? -> ?parameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) 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