libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SageMaker.DescribeFeatureGroup

Description

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.

Synopsis

Creating a Request

data DescribeFeatureGroup Source #

See: newDescribeFeatureGroup smart constructor.

Constructors

DescribeFeatureGroup' 

Fields

  • nextToken :: Maybe Text

    A token to resume pagination of the list of Features (FeatureDefinitions). 2,500 Features are returned by default.

  • featureGroupName :: Text

    The name of the FeatureGroup you want described.

Instances

Instances details
Eq DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

Read DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

Show DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

Generic DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

Associated Types

type Rep DescribeFeatureGroup :: Type -> Type #

NFData DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

Methods

rnf :: DescribeFeatureGroup -> () #

Hashable DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

ToJSON DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

AWSRequest DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

Associated Types

type AWSResponse DescribeFeatureGroup #

ToHeaders DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

ToPath DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

ToQuery DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

type Rep DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

type Rep DescribeFeatureGroup = D1 ('MetaData "DescribeFeatureGroup" "Amazonka.SageMaker.DescribeFeatureGroup" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "DescribeFeatureGroup'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "featureGroupName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DescribeFeatureGroup Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

newDescribeFeatureGroup Source #

Create a value of DescribeFeatureGroup with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextToken:DescribeFeatureGroup', describeFeatureGroup_nextToken - A token to resume pagination of the list of Features (FeatureDefinitions). 2,500 Features are returned by default.

$sel:featureGroupName:DescribeFeatureGroup', describeFeatureGroup_featureGroupName - The name of the FeatureGroup you want described.

Request Lenses

describeFeatureGroup_nextToken :: Lens' DescribeFeatureGroup (Maybe Text) Source #

A token to resume pagination of the list of Features (FeatureDefinitions). 2,500 Features are returned by default.

describeFeatureGroup_featureGroupName :: Lens' DescribeFeatureGroup Text Source #

The name of the FeatureGroup you want described.

Destructuring the Response

data DescribeFeatureGroupResponse Source #

See: newDescribeFeatureGroupResponse smart constructor.

Constructors

DescribeFeatureGroupResponse' 

Fields

  • offlineStoreConfig :: Maybe OfflineStoreConfig

    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.

  • failureReason :: Maybe Text

    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.
  • featureGroupStatus :: Maybe FeatureGroupStatus

    The status of the feature group.

  • offlineStoreStatus :: Maybe OfflineStoreStatus

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

  • onlineStoreConfig :: Maybe OnlineStoreConfig

    The configuration for the OnlineStore.

  • description :: Maybe Text

    A free form description of the feature group.

  • roleArn :: Maybe Text

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

  • httpStatus :: Int

    The response's http status code.

  • featureGroupArn :: Text

    The Amazon Resource Name (ARN) of the FeatureGroup.

  • featureGroupName :: Text

    he name of the FeatureGroup.

  • recordIdentifierFeatureName :: Text

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

  • eventTimeFeatureName :: Text

    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.

  • featureDefinitions :: NonEmpty FeatureDefinition

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

  • creationTime :: POSIX

    A timestamp indicating when SageMaker created the FeatureGroup.

  • nextToken :: Text

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

Instances

Instances details
Eq DescribeFeatureGroupResponse Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

Read DescribeFeatureGroupResponse Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

Show DescribeFeatureGroupResponse Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

Generic DescribeFeatureGroupResponse Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

Associated Types

type Rep DescribeFeatureGroupResponse :: Type -> Type #

NFData DescribeFeatureGroupResponse Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

type Rep DescribeFeatureGroupResponse Source # 
Instance details

Defined in Amazonka.SageMaker.DescribeFeatureGroup

type Rep DescribeFeatureGroupResponse = D1 ('MetaData "DescribeFeatureGroupResponse" "Amazonka.SageMaker.DescribeFeatureGroup" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "DescribeFeatureGroupResponse'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "offlineStoreConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe OfflineStoreConfig)) :*: (S1 ('MetaSel ('Just "failureReason") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "featureGroupStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe FeatureGroupStatus)))) :*: ((S1 ('MetaSel ('Just "offlineStoreStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe OfflineStoreStatus)) :*: S1 ('MetaSel ('Just "onlineStoreConfig") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe OnlineStoreConfig))) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "roleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: (((S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "featureGroupArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "featureGroupName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "recordIdentifierFeatureName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: ((S1 ('MetaSel ('Just "eventTimeFeatureName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "featureDefinitions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty FeatureDefinition))) :*: (S1 ('MetaSel ('Just "creationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))))

newDescribeFeatureGroupResponse Source #

Create a value of DescribeFeatureGroupResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:offlineStoreConfig:DescribeFeatureGroupResponse', describeFeatureGroupResponse_offlineStoreConfig - 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.

$sel:failureReason:DescribeFeatureGroupResponse', describeFeatureGroupResponse_failureReason - 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.

$sel:featureGroupStatus:DescribeFeatureGroupResponse', describeFeatureGroupResponse_featureGroupStatus - The status of the feature group.

$sel:offlineStoreStatus:DescribeFeatureGroupResponse', describeFeatureGroupResponse_offlineStoreStatus - The status of the OfflineStore. Notifies you if replicating data into the OfflineStore has failed. Returns either: Active or Blocked

$sel:onlineStoreConfig:DescribeFeatureGroupResponse', describeFeatureGroupResponse_onlineStoreConfig - The configuration for the OnlineStore.

$sel:description:DescribeFeatureGroupResponse', describeFeatureGroupResponse_description - A free form description of the feature group.

$sel:roleArn:DescribeFeatureGroupResponse', describeFeatureGroupResponse_roleArn - The Amazon Resource Name (ARN) of the IAM execution role used to persist data into the OfflineStore if an OfflineStoreConfig is provided.

$sel:httpStatus:DescribeFeatureGroupResponse', describeFeatureGroupResponse_httpStatus - The response's http status code.

$sel:featureGroupArn:DescribeFeatureGroupResponse', describeFeatureGroupResponse_featureGroupArn - The Amazon Resource Name (ARN) of the FeatureGroup.

$sel:featureGroupName:DescribeFeatureGroup', describeFeatureGroupResponse_featureGroupName - he name of the FeatureGroup.

$sel:recordIdentifierFeatureName:DescribeFeatureGroupResponse', describeFeatureGroupResponse_recordIdentifierFeatureName - The name of the Feature used for RecordIdentifier, whose value uniquely identifies a record stored in the feature store.

$sel:eventTimeFeatureName:DescribeFeatureGroupResponse', describeFeatureGroupResponse_eventTimeFeatureName - 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.

$sel:featureDefinitions:DescribeFeatureGroupResponse', describeFeatureGroupResponse_featureDefinitions - A list of the Features in the FeatureGroup. Each feature is defined by a FeatureName and FeatureType.

$sel:creationTime:DescribeFeatureGroupResponse', describeFeatureGroupResponse_creationTime - A timestamp indicating when SageMaker created the FeatureGroup.

$sel:nextToken:DescribeFeatureGroup', describeFeatureGroupResponse_nextToken - A token to resume pagination of the list of Features (FeatureDefinitions).

Response Lenses

describeFeatureGroupResponse_offlineStoreConfig :: Lens' DescribeFeatureGroupResponse (Maybe OfflineStoreConfig) Source #

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.

describeFeatureGroupResponse_failureReason :: Lens' DescribeFeatureGroupResponse (Maybe Text) Source #

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.

describeFeatureGroupResponse_offlineStoreStatus :: Lens' DescribeFeatureGroupResponse (Maybe OfflineStoreStatus) Source #

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

describeFeatureGroupResponse_roleArn :: Lens' DescribeFeatureGroupResponse (Maybe Text) Source #

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

describeFeatureGroupResponse_featureGroupArn :: Lens' DescribeFeatureGroupResponse Text Source #

The Amazon Resource Name (ARN) of the FeatureGroup.

describeFeatureGroupResponse_recordIdentifierFeatureName :: Lens' DescribeFeatureGroupResponse Text Source #

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

describeFeatureGroupResponse_eventTimeFeatureName :: Lens' DescribeFeatureGroupResponse Text Source #

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.

describeFeatureGroupResponse_featureDefinitions :: Lens' DescribeFeatureGroupResponse (NonEmpty FeatureDefinition) Source #

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

describeFeatureGroupResponse_creationTime :: Lens' DescribeFeatureGroupResponse UTCTime Source #

A timestamp indicating when SageMaker created the FeatureGroup.

describeFeatureGroupResponse_nextToken :: Lens' DescribeFeatureGroupResponse Text Source #

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