[][src]Struct rusoto_compute_optimizer::RecommendationExportJob

pub struct RecommendationExportJob {
    pub creation_timestamp: Option<f64>,
    pub destination: Option<ExportDestination>,
    pub failure_reason: Option<String>,
    pub job_id: Option<String>,
    pub last_updated_timestamp: Option<f64>,
    pub resource_type: Option<String>,
    pub status: Option<String>,
}

Describes a recommendation export job.

Use the DescribeRecommendationExportJobs action to view your recommendation export jobs.

Use the ExportAutoScalingGroupRecommendations or ExportEC2InstanceRecommendations actions to request an export of your recommendations.

Fields

creation_timestamp: Option<f64>

The timestamp of when the export job was created.

destination: Option<ExportDestination>

An object that describes the destination of the export file.

failure_reason: Option<String>

The reason for an export job failure.

job_id: Option<String>

The identification number of the export job.

last_updated_timestamp: Option<f64>

The timestamp of when the export job was last updated.

resource_type: Option<String>

The resource type of the exported recommendations.

status: Option<String>

The status of the export job.

Trait Implementations

impl Clone for RecommendationExportJob[src]

impl Debug for RecommendationExportJob[src]

impl Default for RecommendationExportJob[src]

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

impl PartialEq<RecommendationExportJob> for RecommendationExportJob[src]

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