[][src]Struct rusoto_personalize::Dataset

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

Provides metadata for a dataset.

Fields

creation_date_time: Option<f64>

The creation date and time (in Unix time) of the dataset.

dataset_arn: Option<String>

The Amazon Resource Name (ARN) of the dataset that you want metadata for.

dataset_group_arn: Option<String>

The Amazon Resource Name (ARN) of the dataset group.

dataset_type: Option<String>

One of the following values:

  • Interactions

  • Items

  • Users

last_updated_date_time: Option<f64>

A time stamp that shows when the dataset was updated.

name: Option<String>

The name of the dataset.

schema_arn: Option<String>

The ARN of the associated schema.

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 Dataset[src]

impl Debug for Dataset[src]

impl Default for Dataset[src]

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

impl PartialEq<Dataset> for Dataset[src]

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