[][src]Struct rusoto_discovery::StartContinuousExportResponse

pub struct StartContinuousExportResponse {
    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>,
}

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>>

A dictionary which describes how the data is stored.

  • databaseName - the name of the Glue database used to store the schema.

start_time: Option<f64>

The timestamp representing when the continuous export was started.

Trait Implementations

impl Clone for StartContinuousExportResponse[src]

impl Debug for StartContinuousExportResponse[src]

impl Default for StartContinuousExportResponse[src]

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

impl PartialEq<StartContinuousExportResponse> for StartContinuousExportResponse[src]

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