Class: Aws::SSM::Types::DescribeAvailablePatchesRequest

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 DescribeAvailablePatchesRequest data as a hash:

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

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::PatchOrchestratorFilter>

Filters used to scope down the returned patches.

Returns:



4213
4214
4215
4216
4217
4218
# File 'lib/aws-sdk-ssm/types.rb', line 4213

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

#max_resultsInteger

The maximum number of patches to return (per page).

Returns:

  • (Integer)


4213
4214
4215
4216
4217
4218
# File 'lib/aws-sdk-ssm/types.rb', line 4213

class DescribeAvailablePatchesRequest < Struct.new(
  :filters,
  :max_results,
  :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)


4213
4214
4215
4216
4217
4218
# File 'lib/aws-sdk-ssm/types.rb', line 4213

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