Class: Aws::SSM::Types::DescribePatchGroupsRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ssm/types.rb

Overview

Note:

When making an API call, you may pass DescribePatchGroupsRequest data as a hash:

{
  max_results: 1,
  filters: [
    {
      key: "PatchOrchestratorFilterKey",
      values: ["PatchOrchestratorFilterValue"],
    },
  ],
  next_token: "NextToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::PatchOrchestratorFilter>

One or more filters. Use a filter to return a more specific list of results.

Returns:



4998
4999
5000
5001
5002
5003
# File 'lib/aws-sdk-ssm/types.rb', line 4998

class DescribePatchGroupsRequest < Struct.new(
  :max_results,
  :filters,
  :next_token)
  include Aws::Structure
end

#max_resultsInteger

The maximum number of patch groups to return (per page).

Returns:

  • (Integer)


4998
4999
5000
5001
5002
5003
# File 'lib/aws-sdk-ssm/types.rb', line 4998

class DescribePatchGroupsRequest < Struct.new(
  :max_results,
  :filters,
  :next_token)
  include Aws::Structure
end

#next_tokenString

The token for the next set of items to return. (You received this token from a previous call.)

Returns:

  • (String)


4998
4999
5000
5001
5002
5003
# File 'lib/aws-sdk-ssm/types.rb', line 4998

class DescribePatchGroupsRequest < Struct.new(
  :max_results,
  :filters,
  :next_token)
  include Aws::Structure
end