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

GetDataSourceOutput

import type { GetDataSourceOutput } from "https://aws-api.deno.dev/v0.4/services/machinelearning.ts?docs=full";

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

interface GetDataSourceOutput {
ComputeStatistics?: boolean | null;
ComputeTime?: number | null;
CreatedAt?: Date | number | null;
CreatedByIamUser?: string | null;
DataLocationS3?: string | null;
DataRearrangement?: string | null;
DataSizeInBytes?: number | null;
DataSourceId?: string | null;
DataSourceSchema?: string | null;
FinishedAt?: Date | number | null;
LastUpdatedAt?: Date | number | null;
LogUri?: string | null;
Message?: string | null;
Name?: string | null;
NumberOfFiles?: number | null;
RDSMetadata?: RDSMetadata | null;
RedshiftMetadata?: RedshiftMetadata | null;
RoleARN?: string | null;
StartedAt?: Date | number | null;
Status?: EntityStatus | null;
}

§Properties

§
ComputeStatistics?: boolean | null
[src]

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

§
ComputeTime?: number | null
[src]

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.

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

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

§
CreatedByIamUser?: string | null
[src]

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.

§
DataLocationS3?: string | null
[src]

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

§
DataRearrangement?: string | null
[src]

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

§
DataSizeInBytes?: number | null
[src]

The total size of observations in the data files.

§
DataSourceId?: string | null
[src]

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

§
DataSourceSchema?: string | null
[src]

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

Note: This parameter is provided as part of the verbose format.

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

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.

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

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

§
LogUri?: string | null
[src]

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

§
Message?: string | null
[src]

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

§
Name?: string | null
[src]

A user-supplied name or description of the DataSource.

§
NumberOfFiles?: number | null
[src]

The number of data files referenced by the DataSource.

§
RDSMetadata?: RDSMetadata | null
[src]
§
RedshiftMetadata?: RedshiftMetadata | null
[src]
§
RoleARN?: string | null
[src]
§
StartedAt?: Date | number | null
[src]

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

§
Status?: EntityStatus | null
[src]

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.