Module Values_2.FeatureGroupSummarySource

The name, ARN, CreationTime, FeatureGroup values, LastUpdatedTime and EnableOnlineStorage status of a FeatureGroup.

Sourcetype nonrec t = {
  1. featureGroupName : Values_0.FeatureGroupName.t option;
    (*

    The name of FeatureGroup.

    *)
  2. featureGroupArn : Values_0.FeatureGroupArn.t option;
    (*

    Unique identifier for the FeatureGroup.

    *)
  3. creationTime : Values_0.Timestamp.t option;
    (*

    A timestamp indicating the time of creation time of the FeatureGroup.

    *)
  4. featureGroupStatus : Values_1.FeatureGroupStatus.t option;
    (*

    The status of a FeatureGroup. The status can be any of the following: Creating, Created, CreateFail, Deleting or DetailFail.

    *)
  5. offlineStoreStatus : Values_1.OfflineStoreStatus.t option;
    (*

    Notifies you if replicating data into the OfflineStore has failed. Returns either: Active or Blocked.

    *)
}
Sourceval make : ?featureGroupName:??? -> ?featureGroupArn:??? -> ?creationTime:??? -> ?featureGroupStatus:??? -> ?offlineStoreStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.FeatureGroupName.t | `Structure of (string * [> `Enum of string | `String of Values_0.BlockedReason.t ]) list | `Timestamp of Values_0.Timestamp.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