amazonka-ml-1.6.1: Amazon Machine Learning SDK.

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

Network.AWS.MachineLearning.GetDataSource

Contents

Description

Returns a DataSource that includes metadata and data file information, as well as the current status of the DataSource .

GetDataSource provides results in normal or verbose format. The verbose format adds the schema description and the list of files pointed to by the DataSource to the normal format.

Synopsis

Creating a Request

getDataSource Source #

Creates a value of GetDataSource with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • gdsVerbose - Specifies whether the GetDataSource operation should return DataSourceSchema . If true, DataSourceSchema is returned. If false, DataSourceSchema is not returned.
  • gdsDataSourceId - The ID assigned to the DataSource at creation.

data GetDataSource Source #

See: getDataSource smart constructor.

Instances
Eq GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Data GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> GetDataSource -> c GetDataSource #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c GetDataSource #

toConstr :: GetDataSource -> Constr #

dataTypeOf :: GetDataSource -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c GetDataSource) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c GetDataSource) #

gmapT :: (forall b. Data b => b -> b) -> GetDataSource -> GetDataSource #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> GetDataSource -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> GetDataSource -> r #

gmapQ :: (forall d. Data d => d -> u) -> GetDataSource -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> GetDataSource -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> GetDataSource -> m GetDataSource #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> GetDataSource -> m GetDataSource #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> GetDataSource -> m GetDataSource #

Read GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Show GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Generic GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Associated Types

type Rep GetDataSource :: Type -> Type #

Hashable GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

ToJSON GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

AWSRequest GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Associated Types

type Rs GetDataSource :: Type #

ToHeaders GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

ToPath GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

ToQuery GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

NFData GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Methods

rnf :: GetDataSource -> () #

type Rep GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

type Rep GetDataSource = D1 (MetaData "GetDataSource" "Network.AWS.MachineLearning.GetDataSource" "amazonka-ml-1.6.1-CNBnEKh3aOlK9oNc02t7Bw" False) (C1 (MetaCons "GetDataSource'" PrefixI True) (S1 (MetaSel (Just "_gdsVerbose") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 (MetaSel (Just "_gdsDataSourceId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))
type Rs GetDataSource Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Request Lenses

gdsVerbose :: Lens' GetDataSource (Maybe Bool) Source #

Specifies whether the GetDataSource operation should return DataSourceSchema . If true, DataSourceSchema is returned. If false, DataSourceSchema is not returned.

gdsDataSourceId :: Lens' GetDataSource Text Source #

The ID assigned to the DataSource at creation.

Destructuring the Response

getDataSourceResponse Source #

Creates a value of GetDataSourceResponse with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • gdsrsStatus - The current status of the DataSource . This element can have one of the following values: * PENDING - Amazon ML submitted a request to create a DataSource . * INPROGRESS - The creation process is underway. * FAILED - The request to create a DataSource did not run to completion. It is not usable. * COMPLETED - The creation process completed successfully. * DELETED - The DataSource is marked as deleted. It is not usable.
  • gdsrsNumberOfFiles - The number of data files referenced by the DataSource .
  • gdsrsLastUpdatedAt - The time of the most recent edit to the DataSource . The time is expressed in epoch time.
  • gdsrsCreatedAt - The time that the DataSource was created. The time is expressed in epoch time.
  • gdsrsComputeTime - The approximate CPU time in milliseconds that Amazon Machine Learning spent processing the DataSource , normalized and scaled on computation resources. ComputeTime is only available if the DataSource is in the COMPLETED state and the ComputeStatistics is set to true.
  • gdsrsDataSourceId - The ID assigned to the DataSource at creation. This value should be identical to the value of the DataSourceId in the request.
  • gdsrsRDSMetadata - Undocumented member.
  • gdsrsDataSizeInBytes - The total size of observations in the data files.
  • gdsrsDataSourceSchema - The schema used by all of the data files of this DataSource .
  • gdsrsStartedAt - The epoch time when Amazon Machine Learning marked the DataSource as INPROGRESS . StartedAt isn't available if the DataSource is in the PENDING state.
  • gdsrsFinishedAt - The epoch time when Amazon Machine Learning marked the DataSource as COMPLETED or FAILED . FinishedAt is only available when the DataSource is in the COMPLETED or FAILED state.
  • gdsrsCreatedByIAMUser - The AWS user account from which the DataSource was created. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.
  • gdsrsName - A user-supplied name or description of the DataSource .
  • gdsrsLogURI - A link to the file containing logs of CreateDataSourceFrom* operations.
  • gdsrsDataLocationS3 - The location of the data file or directory in Amazon Simple Storage Service (Amazon S3).
  • gdsrsComputeStatistics - The parameter is true if statistics need to be generated from the observation data.
  • gdsrsMessage - The user-supplied description of the most recent details about creating the DataSource .
  • gdsrsRedshiftMetadata - Undocumented member.
  • gdsrsDataRearrangement - A JSON string that represents the splitting and rearrangement requirement used when this DataSource was created.
  • gdsrsRoleARN - Undocumented member.
  • gdsrsResponseStatus - -- | The response status code.

data GetDataSourceResponse Source #

Represents the output of a GetDataSource operation and describes a DataSource .

See: getDataSourceResponse smart constructor.

Instances
Eq GetDataSourceResponse Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Data GetDataSourceResponse Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> GetDataSourceResponse -> c GetDataSourceResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c GetDataSourceResponse #

toConstr :: GetDataSourceResponse -> Constr #

dataTypeOf :: GetDataSourceResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c GetDataSourceResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c GetDataSourceResponse) #

gmapT :: (forall b. Data b => b -> b) -> GetDataSourceResponse -> GetDataSourceResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> GetDataSourceResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> GetDataSourceResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> GetDataSourceResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> GetDataSourceResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> GetDataSourceResponse -> m GetDataSourceResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> GetDataSourceResponse -> m GetDataSourceResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> GetDataSourceResponse -> m GetDataSourceResponse #

Read GetDataSourceResponse Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Show GetDataSourceResponse Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Generic GetDataSourceResponse Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Associated Types

type Rep GetDataSourceResponse :: Type -> Type #

NFData GetDataSourceResponse Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

Methods

rnf :: GetDataSourceResponse -> () #

type Rep GetDataSourceResponse Source # 
Instance details

Defined in Network.AWS.MachineLearning.GetDataSource

type Rep GetDataSourceResponse = D1 (MetaData "GetDataSourceResponse" "Network.AWS.MachineLearning.GetDataSource" "amazonka-ml-1.6.1-CNBnEKh3aOlK9oNc02t7Bw" False) (C1 (MetaCons "GetDataSourceResponse'" PrefixI True) ((((S1 (MetaSel (Just "_gdsrsStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe EntityStatus)) :*: S1 (MetaSel (Just "_gdsrsNumberOfFiles") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Integer))) :*: (S1 (MetaSel (Just "_gdsrsLastUpdatedAt") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 (MetaSel (Just "_gdsrsCreatedAt") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 (MetaSel (Just "_gdsrsComputeTime") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Integer))))) :*: ((S1 (MetaSel (Just "_gdsrsDataSourceId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_gdsrsRDSMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe RDSMetadata))) :*: (S1 (MetaSel (Just "_gdsrsDataSizeInBytes") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Integer)) :*: (S1 (MetaSel (Just "_gdsrsDataSourceSchema") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_gdsrsStartedAt") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)))))) :*: (((S1 (MetaSel (Just "_gdsrsFinishedAt") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 (MetaSel (Just "_gdsrsCreatedByIAMUser") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_gdsrsName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_gdsrsLogURI") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_gdsrsDataLocationS3") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 (MetaSel (Just "_gdsrsComputeStatistics") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 (MetaSel (Just "_gdsrsMessage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_gdsrsRedshiftMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe RedshiftMetadata)))) :*: (S1 (MetaSel (Just "_gdsrsDataRearrangement") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_gdsrsRoleARN") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_gdsrsResponseStatus") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Int)))))))

Response Lenses

gdsrsStatus :: Lens' GetDataSourceResponse (Maybe EntityStatus) Source #

The current status of the DataSource . This element can have one of the following values: * PENDING - Amazon ML submitted a request to create a DataSource . * INPROGRESS - The creation process is underway. * FAILED - The request to create a DataSource did not run to completion. It is not usable. * COMPLETED - The creation process completed successfully. * DELETED - The DataSource is marked as deleted. It is not usable.

gdsrsNumberOfFiles :: Lens' GetDataSourceResponse (Maybe Integer) Source #

The number of data files referenced by the DataSource .

gdsrsLastUpdatedAt :: Lens' GetDataSourceResponse (Maybe UTCTime) Source #

The time of the most recent edit to the DataSource . The time is expressed in epoch time.

gdsrsCreatedAt :: Lens' GetDataSourceResponse (Maybe UTCTime) Source #

The time that the DataSource was created. The time is expressed in epoch time.

gdsrsComputeTime :: Lens' GetDataSourceResponse (Maybe Integer) Source #

The approximate CPU time in milliseconds that Amazon Machine Learning spent processing the DataSource , normalized and scaled on computation resources. ComputeTime is only available if the DataSource is in the COMPLETED state and the ComputeStatistics is set to true.

gdsrsDataSourceId :: Lens' GetDataSourceResponse (Maybe Text) Source #

The ID assigned to the DataSource at creation. This value should be identical to the value of the DataSourceId in the request.

gdsrsDataSizeInBytes :: Lens' GetDataSourceResponse (Maybe Integer) Source #

The total size of observations in the data files.

gdsrsDataSourceSchema :: Lens' GetDataSourceResponse (Maybe Text) Source #

The schema used by all of the data files of this DataSource .

gdsrsStartedAt :: Lens' GetDataSourceResponse (Maybe UTCTime) Source #

The epoch time when Amazon Machine Learning marked the DataSource as INPROGRESS . StartedAt isn't available if the DataSource is in the PENDING state.

gdsrsFinishedAt :: Lens' GetDataSourceResponse (Maybe UTCTime) Source #

The epoch time when Amazon Machine Learning marked the DataSource as COMPLETED or FAILED . FinishedAt is only available when the DataSource is in the COMPLETED or FAILED state.

gdsrsCreatedByIAMUser :: Lens' GetDataSourceResponse (Maybe Text) Source #

The AWS user account from which the DataSource was created. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.

gdsrsName :: Lens' GetDataSourceResponse (Maybe Text) Source #

A user-supplied name or description of the DataSource .

gdsrsLogURI :: Lens' GetDataSourceResponse (Maybe Text) Source #

A link to the file containing logs of CreateDataSourceFrom* operations.

gdsrsDataLocationS3 :: Lens' GetDataSourceResponse (Maybe Text) Source #

The location of the data file or directory in Amazon Simple Storage Service (Amazon S3).

gdsrsComputeStatistics :: Lens' GetDataSourceResponse (Maybe Bool) Source #

The parameter is true if statistics need to be generated from the observation data.

gdsrsMessage :: Lens' GetDataSourceResponse (Maybe Text) Source #

The user-supplied description of the most recent details about creating the DataSource .

gdsrsDataRearrangement :: Lens' GetDataSourceResponse (Maybe Text) Source #

A JSON string that represents the splitting and rearrangement requirement used when this DataSource was created.

gdsrsResponseStatus :: Lens' GetDataSourceResponse Int Source #

  • - | The response status code.