[][src]Struct rusoto_compute_optimizer::DescribeRecommendationExportJobsRequest

pub struct DescribeRecommendationExportJobsRequest {
    pub filters: Option<Vec<JobFilter>>,
    pub job_ids: Option<Vec<String>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
}

Fields

filters: Option<Vec<JobFilter>>

An array of objects that describe a filter to return a more specific list of export jobs.

job_ids: Option<Vec<String>>

The identification numbers of the export jobs to return.

An export job ID is returned when you create an export using the ExportAutoScalingGroupRecommendations or ExportEC2InstanceRecommendations actions.

All export jobs created in the last seven days are returned if this parameter is omitted.

max_results: Option<i64>

The maximum number of export jobs to return with a single request.

To retrieve the remaining results, make another request with the returned NextToken value.

next_token: Option<String>

The token to advance to the next page of export jobs.

Trait Implementations

impl Clone for DescribeRecommendationExportJobsRequest[src]

impl Debug for DescribeRecommendationExportJobsRequest[src]

impl Default for DescribeRecommendationExportJobsRequest[src]

impl PartialEq<DescribeRecommendationExportJobsRequest> for DescribeRecommendationExportJobsRequest[src]

impl Serialize for DescribeRecommendationExportJobsRequest[src]

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