[][src]Struct rusoto_personalize::DatasetSummary

pub struct DatasetSummary {
    pub creation_date_time: Option<f64>,
    pub dataset_arn: Option<String>,
    pub dataset_type: Option<String>,
    pub last_updated_date_time: Option<f64>,
    pub name: Option<String>,
    pub status: Option<String>,
}

Provides a summary of the properties of a dataset. For a complete listing, call the DescribeDataset API.

Fields

creation_date_time: Option<f64>

The date and time (in Unix time) that the dataset was created.

dataset_arn: Option<String>

The Amazon Resource Name (ARN) of the dataset.

dataset_type: Option<String>

The dataset type. One of the following values:

  • Interactions

  • Items

  • Users

  • Event-Interactions

last_updated_date_time: Option<f64>

The date and time (in Unix time) that the dataset was last updated.

name: Option<String>

The name of the dataset.

status: Option<String>

The status of the dataset.

A dataset can be in one of the following states:

  • CREATE PENDING > CREATE INPROGRESS > ACTIVE -or- CREATE FAILED

  • DELETE PENDING > DELETE INPROGRESS

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> 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.