[][src]Struct rusoto_forecast::DatasetSummary

pub struct DatasetSummary {
    pub creation_time: Option<f64>,
    pub dataset_arn: Option<String>,
    pub dataset_name: Option<String>,
    pub dataset_type: Option<String>,
    pub domain: Option<String>,
    pub last_modification_time: Option<f64>,
}

Provides a summary of the dataset properties used in the ListDatasets operation. To get the complete set of properties, call the DescribeDataset operation, and provide the DatasetArn.

Fields

creation_time: Option<f64>

When the dataset was created.

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.

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 ListDatasets call. After a CreateDatasetImportJob operation has finished, LastModificationTime is when the import job completed or failed.

Trait Implementations

impl Clone for DatasetSummary[src]

impl Debug for DatasetSummary[src]

impl Default for DatasetSummary[src]

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

impl PartialEq<DatasetSummary> for DatasetSummary[src]

impl StructuralPartialEq for DatasetSummary[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, 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> Sealed<T> for T where
    T: ?Sized

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.