Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeFeatureGroupResponse

import type { DescribeFeatureGroupResponse } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface DescribeFeatureGroupResponse {
CreationTime: Date | number;
Description?: string | null;
EventTimeFeatureName: string;
FailureReason?: string | null;
FeatureDefinitions: FeatureDefinition[];
FeatureGroupArn: string;
FeatureGroupName: string;
FeatureGroupStatus?: FeatureGroupStatus | null;
LastModifiedTime?: Date | number | null;
LastUpdateStatus?: LastUpdateStatus | null;
NextToken: string;
OfflineStoreConfig?: OfflineStoreConfig | null;
OfflineStoreStatus?: OfflineStoreStatus | null;
OnlineStoreConfig?: OnlineStoreConfig | null;
OnlineStoreTotalSizeBytes?: number | null;
RecordIdentifierFeatureName: string;
RoleArn?: string | null;
}

§Properties

§
CreationTime: Date | number
[src]

A timestamp indicating when SageMaker created the FeatureGroup.

§
Description?: string | null
[src]

A free form description of the feature group.

§
EventTimeFeatureName: string
[src]

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.

§
FailureReason?: string | null
[src]

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.
§
FeatureDefinitions: FeatureDefinition[]
[src]

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

§
FeatureGroupArn: string
[src]

The Amazon Resource Name (ARN) of the FeatureGroup.

§
FeatureGroupName: string
[src]

he name of the FeatureGroup.

§
FeatureGroupStatus?: FeatureGroupStatus | null
[src]

The status of the feature group.

§
LastModifiedTime?: Date | number | null
[src]

A timestamp indicating when the feature group was last updated.

§
LastUpdateStatus?: LastUpdateStatus | null
[src]

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

§
NextToken: string
[src]

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

§
OfflineStoreConfig?: OfflineStoreConfig | null
[src]

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.
§
OfflineStoreStatus?: OfflineStoreStatus | null
[src]

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

§
OnlineStoreConfig?: OnlineStoreConfig | null
[src]

The configuration for the OnlineStore.

§
OnlineStoreTotalSizeBytes?: number | null
[src]

The size of the OnlineStore in bytes.

§
RecordIdentifierFeatureName: string
[src]

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

§
RoleArn?: string | null
[src]

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