[][src]Struct rusoto_forecast::DescribeDatasetImportJobResponse

pub struct DescribeDatasetImportJobResponse {
    pub creation_time: Option<f64>,
    pub data_size: Option<f64>,
    pub data_source: Option<DataSource>,
    pub dataset_arn: Option<String>,
    pub dataset_import_job_arn: Option<String>,
    pub dataset_import_job_name: Option<String>,
    pub field_statistics: Option<HashMap<String, Statistics>>,
    pub last_modification_time: Option<f64>,
    pub message: Option<String>,
    pub status: Option<String>,
    pub timestamp_format: Option<String>,
}

Fields

creation_time: Option<f64>

When the dataset import job was created.

data_size: Option<f64>

The size of the dataset in gigabytes (GB) after the import job has finished.

data_source: Option<DataSource>

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.

dataset_arn: Option<String>

The Amazon Resource Name (ARN) of the dataset that the training data was imported to.

dataset_import_job_arn: Option<String>

The ARN of the dataset import job.

dataset_import_job_name: Option<String>

The name of the dataset import job.

field_statistics: Option<HashMap<String, Statistics>>

Statistical information about each field in the input data.

last_modification_time: Option<f64>

The last time that the dataset was modified. The time depends on the status of the job, as follows:

  • CREATEPENDING - The same time as CreationTime.

  • CREATEINPROGRESS - The current timestamp.

  • ACTIVE or CREATEFAILED - When the job finished or failed.

message: Option<String>

If an error occurred, an informational message about the error.

status: Option<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 CREATEINPROGRESS, the status of the dataset is UPDATEINPROGRESS. States include:

  • ACTIVE

  • CREATEPENDING, CREATEINPROGRESS, CREATEFAILED

  • DELETEPENDING, DELETEINPROGRESS, DELETEFAILED

timestamp_format: Option<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

Trait Implementations

impl Clone for DescribeDatasetImportJobResponse[src]

impl Debug for DescribeDatasetImportJobResponse[src]

impl Default for DescribeDatasetImportJobResponse[src]

impl<'de> Deserialize<'de> for DescribeDatasetImportJobResponse[src]

impl PartialEq<DescribeDatasetImportJobResponse> for DescribeDatasetImportJobResponse[src]

impl StructuralPartialEq for DescribeDatasetImportJobResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.