You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ComputeOptimizer::Types::DescribeRecommendationExportJobsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DescribeRecommendationExportJobsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  job_ids: ["JobId"],
  filters: [
    {
      name: "ResourceType", # accepts ResourceType, JobStatus
      values: ["FilterValue"],
    },
  ],
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::JobFilter>

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

Returns:

  • (Array<Types::JobFilter>)

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

#job_idsArray<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.

Returns:

  • (Array<String>)

    The identification numbers of the export jobs to return.

#max_resultsInteger

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.

Returns:

  • (Integer)

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

#next_tokenString

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

Returns:

  • (String)

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