[][src]Struct rusoto_iotanalytics::Dataset

pub struct Dataset {
    pub actions: Option<Vec<DatasetAction>>,
    pub arn: Option<String>,
    pub content_delivery_rules: Option<Vec<DatasetContentDeliveryRule>>,
    pub creation_time: Option<f64>,
    pub last_update_time: Option<f64>,
    pub name: Option<String>,
    pub retention_period: Option<RetentionPeriod>,
    pub status: Option<String>,
    pub triggers: Option<Vec<DatasetTrigger>>,
    pub versioning_configuration: Option<VersioningConfiguration>,
}

Information about a data set.

Fields

actions: Option<Vec<DatasetAction>>

The "DatasetAction" objects that automatically create the data set contents.

arn: Option<String>

The ARN of the data set.

content_delivery_rules: Option<Vec<DatasetContentDeliveryRule>>

When data set contents are created they are delivered to destinations specified here.

creation_time: Option<f64>

When the data set was created.

last_update_time: Option<f64>

The last time the data set was updated.

name: Option<String>

The name of the data set.

retention_period: Option<RetentionPeriod>

[Optional] How long, in days, message data is kept for the data set.

status: Option<String>

The status of the data set.

triggers: Option<Vec<DatasetTrigger>>

The "DatasetTrigger" objects that specify when the data set is automatically updated.

versioning_configuration: Option<VersioningConfiguration>

[Optional] How many versions of data set contents are kept. If not specified or set to null, only the latest version plus the latest succeeded version (if they are different) are kept for the time period specified by the "retentionPeriod" parameter. (For more information, see https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)

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.