DescribeDatasetImportJobResponse

public struct DescribeDatasetImportJobResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • When the dataset import job was created.

    Declaration

    Swift

    public let creationTime: TimeStamp?
  • The Amazon Resource Name (ARN) of the dataset that the training data was imported to.

    Declaration

    Swift

    public let datasetArn: String?
  • The ARN of the dataset import job.

    Declaration

    Swift

    public let datasetImportJobArn: String?
  • The name of the dataset import job.

    Declaration

    Swift

    public let datasetImportJobName: String?
  • The size of the dataset in gigabytes (GB) after the import job has finished.

    Declaration

    Swift

    public let dataSize: Double?
  • The location of the training data to import and an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the data. If encryption is used, DataSource includes an AWS Key Management Service (KMS) key.

    Declaration

    Swift

    public let dataSource: DataSource?
  • Statistical information about each field in the input data.

    Declaration

    Swift

    public let fieldStatistics: [String : Statistics]?
  • The last time that the dataset was modified. The time depends on the status of the job, as follows: CREATE_PENDING - The same time as CreationTime. CREATE_IN_PROGRESS - The current timestamp. ACTIVE or CREATE_FAILED - When the job finished or failed.

    Declaration

    Swift

    public let lastModificationTime: TimeStamp?
  • If an error occurred, an informational message about the error.

    Declaration

    Swift

    public let message: String?
  • The status of the dataset import job. The status is reflected in the status of the dataset. For example, when the import job status is CREATE_IN_PROGRESS, the status of the dataset is UPDATE_IN_PROGRESS. States include: ACTIVE CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED

    Declaration

    Swift

    public let status: String?
  • The format of timestamps in the dataset. The format that you specify depends on the DataFrequency specified when the dataset was created. The following formats are supported “yyyy-MM-dd” For the following data frequencies: Y, M, W, and D “yyyy-MM-dd HH:mm:ss” For the following data frequencies: H, 30min, 15min, and 1min; and optionally, for: Y, M, W, and D

    Declaration

    Swift

    public let timestampFormat: String?
  • Undocumented

    Declaration

    Swift

    public init(creationTime: TimeStamp? = nil, datasetArn: String? = nil, datasetImportJobArn: String? = nil, datasetImportJobName: String? = nil, dataSize: Double? = nil, dataSource: DataSource? = nil, fieldStatistics: [String : Statistics]? = nil, lastModificationTime: TimeStamp? = nil, message: String? = nil, status: String? = nil, timestampFormat: String? = nil)