DescribeRecommendationExportJobsRequest

public struct DescribeRecommendationExportJobsRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • An array of objects that describe a filter to return a more specific list of export jobs.

    Declaration

    Swift

    public let filters: [JobFilter]?
  • 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.

    Declaration

    Swift

    public let jobIds: [String]?
  • 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.

    Declaration

    Swift

    public let maxResults: Int?
  • The token to advance to the next page of export jobs.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(filters: [JobFilter]? = nil, jobIds: [String]? = nil, maxResults: Int? = nil, nextToken: String? = nil)