Class: Aws::SSM::Types::DescribeInstancePatchStatesRequest

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

{
  instance_ids: ["InstanceId"], # required
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#instance_idsArray<String>

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

Returns:

  • (Array<String>)


4639
4640
4641
4642
4643
4644
# File 'lib/aws-sdk-ssm/types.rb', line 4639

class DescribeInstancePatchStatesRequest < Struct.new(
  :instance_ids,
  :next_token,
  :max_results)
  include Aws::Structure
end

#max_resultsInteger

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

Returns:

  • (Integer)


4639
4640
4641
4642
4643
4644
# File 'lib/aws-sdk-ssm/types.rb', line 4639

class DescribeInstancePatchStatesRequest < Struct.new(
  :instance_ids,
  :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)


4639
4640
4641
4642
4643
4644
# File 'lib/aws-sdk-ssm/types.rb', line 4639

class DescribeInstancePatchStatesRequest < Struct.new(
  :instance_ids,
  :next_token,
  :max_results)
  include Aws::Structure
end