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

impl Default for Dataset[src]

impl Clone for Dataset[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Dataset[src]

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

Auto Trait Implementations

impl Send for Dataset

impl Sync for Dataset

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self