[][src]Struct rusoto_discovery::ContinuousExportDescription

pub struct ContinuousExportDescription {
    pub data_source: Option<String>,
    pub export_id: Option<String>,
    pub s_3_bucket: Option<String>,
    pub schema_storage_config: Option<HashMap<String, String>>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
    pub status_detail: Option<String>,
    pub stop_time: Option<f64>,
}

A list of continuous export descriptions.

Fields

data_source: Option<String>

The type of data collector used to gather this data (currently only offered for AGENT).

export_id: Option<String>

The unique ID assigned to this export.

s_3_bucket: Option<String>

The name of the s3 bucket where the export data parquet files are stored.

schema_storage_config: Option<HashMap<String, String>>

An object which describes how the data is stored.

start_time: Option<f64>

The timestamp representing when the continuous export was started.

status: Option<String>

Describes the status of the export. Can be one of the following values:

status_detail: Option<String>

Contains information about any errors that have occurred. This data type can have the following values:

stop_time: Option<f64>

The timestamp that represents when this continuous export was stopped.

Trait Implementations

impl PartialEq<ContinuousExportDescription> for ContinuousExportDescription[src]

impl Default for ContinuousExportDescription[src]

impl Clone for ContinuousExportDescription[src]

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

Performs copy-assignment from source. Read more

impl Debug for ContinuousExportDescription[src]

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

Auto Trait Implementations

impl Send for ContinuousExportDescription

impl Sync for ContinuousExportDescription

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