Class: Aws::SSM::Types::DescribePatchBaselinesRequest

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 DescribePatchBaselinesRequest 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>

Each element in the array is a structure containing:

Key: (string, “NAME_PREFIX” or “OWNER”)

Value: (array of strings, exactly 1 entry, between 1 and 255 characters)

Returns:



5537
5538
5539
5540
5541
5542
# File 'lib/aws-sdk-ssm/types.rb', line 5537

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

#max_resultsInteger

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

Returns:

  • (Integer)


5537
5538
5539
5540
5541
5542
# File 'lib/aws-sdk-ssm/types.rb', line 5537

class DescribePatchBaselinesRequest < 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)


5537
5538
5539
5540
5541
5542
# File 'lib/aws-sdk-ssm/types.rb', line 5537

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