[][src]Struct rusoto_personalize::CreateDatasetRequest

pub struct CreateDatasetRequest {
    pub dataset_group_arn: String,
    pub dataset_type: String,
    pub name: String,
    pub schema_arn: String,
}

Fields

dataset_group_arn: String

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

dataset_type: String

The type of dataset.

One of the following (case insensitive) values:

  • Interactions

  • Items

  • Users

name: String

The name for the dataset.

schema_arn: String

The ARN of the schema to associate with the dataset. The schema defines the dataset fields.

Trait Implementations

impl Clone for CreateDatasetRequest[src]

impl Debug for CreateDatasetRequest[src]

impl Default for CreateDatasetRequest[src]

impl PartialEq<CreateDatasetRequest> for CreateDatasetRequest[src]

impl Serialize for CreateDatasetRequest[src]

impl StructuralPartialEq for CreateDatasetRequest[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> From<T> 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.