Module Values_1.DescribeFeatureGroupResponseSource

Use this operation to describe a FeatureGroup. The response includes information on the creation time, FeatureGroup name, the unique identifier for each FeatureGroup, and more.

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

    The Amazon Resource Name (ARN) of the FeatureGroup.

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

    he name of the FeatureGroup.

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

    The name of the Feature used for RecordIdentifier, whose value uniquely identifies a record stored in the feature store.

    *)
  4. eventTimeFeatureName : Values_0.FeatureName.t option;
    (*

    The name of the feature that stores the EventTime of a Record in a FeatureGroup. An EventTime is a point in time when a new event occurs that corresponds to the creation or update of a Record in a FeatureGroup. All Records in the FeatureGroup have a corresponding EventTime.

    *)
  5. featureDefinitions : Values_0.FeatureDefinitions.t option;
    (*

    A list of the Features in the FeatureGroup. Each feature is defined by a FeatureName and FeatureType.

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

    A timestamp indicating when SageMaker created the FeatureGroup.

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

    A timestamp indicating when the feature group was last updated.

    *)
  8. onlineStoreConfig : Values_0.OnlineStoreConfig.t option;
    (*

    The configuration for the OnlineStore.

    *)
  9. offlineStoreConfig : Values_0.OfflineStoreConfig.t option;
    (*

    The configuration of the offline store. It includes the following configurations: Amazon S3 location of the offline store. Configuration of the Glue data catalog. Table format of the offline store. Option to disable the automatic creation of a Glue table for the offline store. Encryption configuration.

    *)
  10. throughputConfig : ThroughputConfigDescription.t option;
  11. roleArn : Values_0.RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM execution role used to persist data into the OfflineStore if an OfflineStoreConfig is provided.

    *)
  12. featureGroupStatus : FeatureGroupStatus.t option;
    (*

    The status of the feature group.

    *)
  13. offlineStoreStatus : OfflineStoreStatus.t option;
    (*

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

    *)
  14. lastUpdateStatus : LastUpdateStatus.t option;
    (*

    A value indicating whether the update made to the feature group was successful.

    *)
  15. failureReason : Values_0.FailureReason.t option;
    (*

    The reason that the FeatureGroup failed to be replicated in the OfflineStore. This is failure can occur because: The FeatureGroup could not be created in the OfflineStore. The FeatureGroup could not be deleted from the OfflineStore.

    *)
  16. description : Values_0.Description.t option;
    (*

    A free form description of the feature group.

    *)
  17. nextToken : Values_0.NextToken.t option;
    (*

    A token to resume pagination of the list of Features (FeatureDefinitions).

    *)
  18. onlineStoreTotalSizeBytes : OnlineStoreTotalSizeBytes.t option;
    (*

    The size of the OnlineStore in bytes.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFound of Values_0.ResourceNotFound.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?featureGroupArn:??? -> ?featureGroupName:??? -> ?recordIdentifierFeatureName:??? -> ?eventTimeFeatureName:??? -> ?featureDefinitions:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?onlineStoreConfig:??? -> ?offlineStoreConfig:??? -> ?throughputConfig:??? -> ?roleArn:??? -> ?featureGroupStatus:??? -> ?offlineStoreStatus:??? -> ?lastUpdateStatus:??? -> ?failureReason:??? -> ?description:??? -> ?nextToken:??? -> ?onlineStoreTotalSizeBytes:??? -> 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 * [> `Enum of string | `String of string | `Structure of (string * [> `Structure of (string * [> `Integer of int ]) list ]) list ]) list ] list | `Long of OnlineStoreTotalSizeBytes.t | `String of Values_0.FeatureGroupArn.t | `Structure of (string * [> `Boolean of bool | `Enum of string | `Integer of Values_0.CapacityUnit.t | `String of Values_0.BlockedReason.t | `Structure of (string * [> `Enum of string | `Integer of int | `String of string ]) list ]) list | `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