[][src]Struct rusoto_discovery::ExportInfo

pub struct ExportInfo {
    pub configurations_download_url: Option<String>,
    pub export_id: String,
    pub export_request_time: f64,
    pub export_status: String,
    pub is_truncated: Option<bool>,
    pub requested_end_time: Option<f64>,
    pub requested_start_time: Option<f64>,
    pub status_message: String,
}

Information regarding the export status of discovered data. The value is an array of objects.

Fields

configurations_download_url: Option<String>

A URL for an Amazon S3 bucket where you can review the exported data. The URL is displayed only if the export succeeded.

export_id: String

A unique identifier used to query an export.

export_request_time: f64

The time that the data export was initiated.

export_status: String

The status of the data export job.

is_truncated: Option<bool>

If true, the export of agent information exceeded the size limit for a single export and the exported data is incomplete for the requested time range. To address this, select a smaller time range for the export by using startDate and endDate.

requested_end_time: Option<f64>

The endTime used in the StartExportTask request. If no endTime was requested, this result does not appear in ExportInfo.

requested_start_time: Option<f64>

The value of startTime parameter in the StartExportTask request. If no startTime was requested, this result does not appear in ExportInfo.

status_message: String

A status message provided for API callers.

Trait Implementations

impl Clone for ExportInfo[src]

impl Debug for ExportInfo[src]

impl Default for ExportInfo[src]

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

impl PartialEq<ExportInfo> for ExportInfo[src]

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