- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
GetDataSourceCommand
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.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { MachineLearningClient, GetDataSourceCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
// const { MachineLearningClient, GetDataSourceCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
const client = new MachineLearningClient(config);
const input = { // GetDataSourceInput
DataSourceId: "STRING_VALUE", // required
Verbose: true || false,
};
const command = new GetDataSourceCommand(input);
const response = await client.send(command);
// { // GetDataSourceOutput
// DataSourceId: "STRING_VALUE",
// DataLocationS3: "STRING_VALUE",
// DataRearrangement: "STRING_VALUE",
// CreatedByIamUser: "STRING_VALUE",
// CreatedAt: new Date("TIMESTAMP"),
// LastUpdatedAt: new Date("TIMESTAMP"),
// DataSizeInBytes: Number("long"),
// NumberOfFiles: Number("long"),
// Name: "STRING_VALUE",
// Status: "PENDING" || "INPROGRESS" || "FAILED" || "COMPLETED" || "DELETED",
// LogUri: "STRING_VALUE",
// Message: "STRING_VALUE",
// RedshiftMetadata: { // RedshiftMetadata
// RedshiftDatabase: { // RedshiftDatabase
// DatabaseName: "STRING_VALUE", // required
// ClusterIdentifier: "STRING_VALUE", // required
// },
// DatabaseUserName: "STRING_VALUE",
// SelectSqlQuery: "STRING_VALUE",
// },
// RDSMetadata: { // RDSMetadata
// Database: { // RDSDatabase
// InstanceIdentifier: "STRING_VALUE", // required
// DatabaseName: "STRING_VALUE", // required
// },
// DatabaseUserName: "STRING_VALUE",
// SelectSqlQuery: "STRING_VALUE",
// ResourceRole: "STRING_VALUE",
// ServiceRole: "STRING_VALUE",
// DataPipelineId: "STRING_VALUE",
// },
// RoleARN: "STRING_VALUE",
// ComputeStatistics: true || false,
// ComputeTime: Number("long"),
// FinishedAt: new Date("TIMESTAMP"),
// StartedAt: new Date("TIMESTAMP"),
// DataSourceSchema: "STRING_VALUE",
// };
GetDataSourceCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
DataSourceId Required | string | undefined | The ID assigned to the |
Verbose | boolean | undefined | Specifies whether the If true, If false, |
GetDataSourceCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
ComputeStatistics | boolean | undefined | The parameter is |
ComputeTime | number | undefined | The approximate CPU time in milliseconds that Amazon Machine Learning spent processing the |
CreatedAt | Date | undefined | The time that the |
CreatedByIamUser | string | undefined | The AWS user account from which the |
DataLocationS3 | string | undefined | The location of the data file or directory in Amazon Simple Storage Service (Amazon S3). |
DataRearrangement | string | undefined | A JSON string that represents the splitting and rearrangement requirement used when this |
DataSizeInBytes | number | undefined | The total size of observations in the data files. |
DataSourceId | string | undefined | The ID assigned to the |
DataSourceSchema | string | undefined | The schema used by all of the data files of this Note: This parameter is provided as part of the verbose format. |
FinishedAt | Date | undefined | The epoch time when Amazon Machine Learning marked the |
LastUpdatedAt | Date | undefined | The time of the most recent edit to the |
LogUri | string | undefined | A link to the file containing logs of |
Message | string | undefined | The user-supplied description of the most recent details about creating the |
Name | string | undefined | A user-supplied name or description of the |
NumberOfFiles | number | undefined | The number of data files referenced by the |
RDSMetadata | RDSMetadata | undefined | The datasource details that are specific to Amazon RDS. |
RedshiftMetadata | RedshiftMetadata | undefined | Describes the |
RoleARN | string | undefined | The Amazon Resource Name (ARN) of an AWS IAM Role , such as the following: arn:aws:iam::account:role/rolename. |
StartedAt | Date | undefined | The epoch time when Amazon Machine Learning marked the |
Status | EntityStatus | undefined | The current status of the
|
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
InternalServerException | server | An error on the server occurred when trying to process a request. |
InvalidInputException | client | An error on the client occurred. Typically, the cause is an invalid input value. |
ResourceNotFoundException | client | A specified resource cannot be located. |
MachineLearningServiceException | Base exception class for all service exceptions from MachineLearning service. |