[][src]Struct rusoto_iotanalytics::Datastore

pub struct Datastore {
    pub arn: Option<String>,
    pub creation_time: Option<f64>,
    pub file_format_configuration: Option<FileFormatConfiguration>,
    pub last_message_arrival_time: Option<f64>,
    pub last_update_time: Option<f64>,
    pub name: Option<String>,
    pub retention_period: Option<RetentionPeriod>,
    pub status: Option<String>,
    pub storage: Option<DatastoreStorage>,
}

Information about a data store.

Fields

arn: Option<String>

The ARN of the data store.

creation_time: Option<f64>

When the data store was created.

file_format_configuration: Option<FileFormatConfiguration>

Contains the configuration information of file formats. AWS IoT Analytics data stores support JSON and Parquet.

The default file format is JSON. You can specify only one format.

You can't change the file format after you create the data store.

last_message_arrival_time: Option<f64>

The last time when a new message arrived in the data store.

AWS IoT Analytics updates this value at most once per minute for one data store. Hence, the lastMessageArrivalTime value is an approximation.

This feature only applies to messages that arrived in the data store after October 23, 2020.

last_update_time: Option<f64>

The last time the data store was updated.

name: Option<String>

The name of the data store.

retention_period: Option<RetentionPeriod>

How long, in days, message data is kept for the data store. When customerManagedS3 storage is selected, this parameter is ignored.

status: Option<String>

The status of a data store:

CREATING

The data store is being created.

ACTIVE

The data store has been created and can be used.

DELETING

The data store is being deleted.

storage: Option<DatastoreStorage>

Where data store data is stored. You can choose one of serviceManagedS3 or customerManagedS3 storage. If not specified, the default is serviceManagedS3. You cannot change this storage option after the data store is created.

Trait Implementations

impl Clone for Datastore[src]

impl Debug for Datastore[src]

impl Default for Datastore[src]

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

impl PartialEq<Datastore> for Datastore[src]

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