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:



5677
5678
5679
5680
5681
5682
# File 'lib/aws-sdk-ssm/types.rb', line 5677

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)


5677
5678
5679
5680
5681
5682
# File 'lib/aws-sdk-ssm/types.rb', line 5677

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)


5677
5678
5679
5680
5681
5682
# File 'lib/aws-sdk-ssm/types.rb', line 5677

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