[][src]Struct rusoto_dataexchange::DataSetEntry

pub struct DataSetEntry {
    pub arn: String,
    pub asset_type: String,
    pub created_at: f64,
    pub description: String,
    pub id: String,
    pub name: String,
    pub origin: String,
    pub origin_details: Option<OriginDetails>,
    pub source_id: Option<String>,
    pub updated_at: f64,
}

A data set is an AWS resource with one or more revisions.

Fields

arn: String

The ARN for the data set.

asset_type: String

The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.

created_at: f64

The date and time that the data set was created, in ISO 8601 format.

description: String

The description for the data set.

id: String

The unique identifier for the data set.

name: String

The name of the data set.

origin: String

A property that defines the data set as OWNED by the account (for providers) or ENTITLED to the account (for subscribers).

origin_details: Option<OriginDetails>

If the origin of this data set is ENTITLED, includes the details for the product on AWS Marketplace.

source_id: Option<String>

The data set ID of the owned data set corresponding to the entitled data set being viewed. This parameter is returned when a data set owner is viewing the entitled copy of its owned data set.

updated_at: f64

The date and time that the data set was last updated, in ISO 8601 format.

Trait Implementations

impl Clone for DataSetEntry[src]

impl Debug for DataSetEntry[src]

impl Default for DataSetEntry[src]

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

impl PartialEq<DataSetEntry> for DataSetEntry[src]

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