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

Class: Aws::MarketplaceCatalog::Types::ListChangeSetsRequest

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

Overview

Note:

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

{
  catalog: "Catalog", # required
  filter_list: [
    {
      name: "FilterName",
      value_list: ["StringValue"],
    },
  ],
  sort: {
    sort_by: "SortBy",
    sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
  },
  max_results: 1,
  next_token: "NextToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#catalogString

The catalog related to the request. Fixed value: AWSMarketplace

Returns:

  • (String)

    The catalog related to the request.

#filter_listArray<Types::Filter>

An array of filter objects.

Returns:

#max_resultsInteger

The maximum number of results returned by a single call. This value must be provided in the next call to retrieve the next set of results. By default, this value is 20.

Returns:

  • (Integer)

    The maximum number of results returned by a single call.

#next_tokenString

The token value retrieved from a previous call to access the next page of results.

Returns:

  • (String)

    The token value retrieved from a previous call to access the next page of results.

#sortTypes::Sort

An object that contains two attributes, SortBy and SortOrder.

Returns:

  • (Types::Sort)

    An object that contains two attributes, SortBy and SortOrder.