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.3/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;
NextToken: string;
OfflineStoreConfig?: OfflineStoreConfig | null;
OfflineStoreStatus?: OfflineStoreStatus | null;
OnlineStoreConfig?: OnlineStoreConfig | 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.

§
NextToken: string
[src]

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

§
OfflineStoreConfig?: OfflineStoreConfig | null
[src]

The configuration of the OfflineStore, inducing the S3 location of the OfflineStore, Amazon Web Services Glue or Amazon Web Services Hive data catalogue configurations, and the security 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.

§
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.