Class: Aws::SSM::Types::DescribeInstancePatchesRequest

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::PatchOrchestratorFilter>

An array of structures. Each entry in the array is a structure containing a Key, Value combination. Valid values for Key are ‘Classification` | `KBId` | `Severity` | `State`.

Returns:



4700
4701
4702
4703
4704
4705
4706
# File 'lib/aws-sdk-ssm/types.rb', line 4700

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

#instance_idString

The ID of the instance whose patch state information should be retrieved.

Returns:

  • (String)


4700
4701
4702
4703
4704
4705
4706
# File 'lib/aws-sdk-ssm/types.rb', line 4700

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

#max_resultsInteger

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

Returns:

  • (Integer)


4700
4701
4702
4703
4704
4705
4706
# File 'lib/aws-sdk-ssm/types.rb', line 4700

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


4700
4701
4702
4703
4704
4705
4706
# File 'lib/aws-sdk-ssm/types.rb', line 4700

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