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

DataSource

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

Represents the output of the GetDataSource operation.

The content consists of the detailed metadata and data file information and the current status of the DataSource.

interface DataSource {
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;
FinishedAt?: Date | number | null;
LastUpdatedAt?: Date | number | 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]
§
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 and name of the data in Amazon Simple Storage Service (Amazon S3) that is used by a DataSource.

§
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 number of observations contained in the data files that the DataSource references.

§
DataSourceId?: string | null
[src]

The ID that is assigned to the DataSource during creation.

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

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

§
Message?: string | null
[src]

A 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]
§
Status?: EntityStatus | null
[src]

The current status of the DataSource. This element can have one of the following values:

  • PENDING - Amazon Machine Learning (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.