[][src]Struct rusoto_forecast::DescribeDatasetResponse

pub struct DescribeDatasetResponse {
    pub creation_time: Option<f64>,
    pub data_frequency: Option<String>,
    pub dataset_arn: Option<String>,
    pub dataset_name: Option<String>,
    pub dataset_type: Option<String>,
    pub domain: Option<String>,
    pub encryption_config: Option<EncryptionConfig>,
    pub last_modification_time: Option<f64>,
    pub schema: Option<Schema>,
    pub status: Option<String>,
}

Fields

creation_time: Option<f64>

When the dataset was created.

data_frequency: Option<String>

The frequency of data collection.

Valid intervals are Y (Year), M (Month), W (Week), D (Day), H (Hour), 30min (30 minutes), 15min (15 minutes), 10min (10 minutes), 5min (5 minutes), and 1min (1 minute). For example, "M" indicates every month and "30min" indicates every 30 minutes.

dataset_arn: Option<String>

The Amazon Resource Name (ARN) of the dataset.

dataset_name: Option<String>

The name of the dataset.

dataset_type: Option<String>

The dataset type.

domain: Option<String>

The domain associated with the dataset.

encryption_config: Option<EncryptionConfig>

The AWS Key Management Service (KMS) key and the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key.

last_modification_time: Option<f64>

When you create a dataset, LastModificationTime is the same as CreationTime. While data is being imported to the dataset, LastModificationTime is the current time of the DescribeDataset call. After a CreateDatasetImportJob operation has finished, LastModificationTime is when the import job completed or failed.

schema: Option<Schema>

An array of SchemaAttribute objects that specify the dataset fields. Each SchemaAttribute specifies the name and data type of a field.

status: Option<String>

The status of the dataset. States include:

  • ACTIVE

  • CREATEPENDING, CREATEINPROGRESS, CREATEFAILED

  • DELETEPENDING, DELETEINPROGRESS, DELETEFAILED

  • UPDATEPENDING, UPDATEINPROGRESS, UPDATEFAILED

The UPDATE states apply while data is imported to the dataset from a call to the CreateDatasetImportJob operation and reflect the status of the dataset import job. For example, when the import job status is CREATEINPROGRESS, the status of the dataset is UPDATEINPROGRESS.

The Status of the dataset must be ACTIVE before you can import training data.

Trait Implementations

impl Clone for DescribeDatasetResponse[src]

impl Debug for DescribeDatasetResponse[src]

impl Default for DescribeDatasetResponse[src]

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

impl PartialEq<DescribeDatasetResponse> for DescribeDatasetResponse[src]

impl StructuralPartialEq for DescribeDatasetResponse[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.