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§
Source§impl Clone for DescribeRecommendationExportJobsRequest
impl Clone for DescribeRecommendationExportJobsRequest
Source§fn clone(&self) -> DescribeRecommendationExportJobsRequest
fn clone(&self) -> DescribeRecommendationExportJobsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DescribeRecommendationExportJobsRequest
impl Default for DescribeRecommendationExportJobsRequest
Source§fn default() -> DescribeRecommendationExportJobsRequest
fn default() -> DescribeRecommendationExportJobsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeRecommendationExportJobsRequest
impl PartialEq for DescribeRecommendationExportJobsRequest
Source§fn eq(&self, other: &DescribeRecommendationExportJobsRequest) -> bool
fn eq(&self, other: &DescribeRecommendationExportJobsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeRecommendationExportJobsRequest
Auto Trait Implementations§
impl Freeze for DescribeRecommendationExportJobsRequest
impl RefUnwindSafe for DescribeRecommendationExportJobsRequest
impl Send for DescribeRecommendationExportJobsRequest
impl Sync for DescribeRecommendationExportJobsRequest
impl Unpin for DescribeRecommendationExportJobsRequest
impl UnwindSafe for DescribeRecommendationExportJobsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more