Class: Aws::SSM::Types::DescribePatchPropertiesRequest

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

{
  operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS
  property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
  patch_set: "OS", # accepts OS, APPLICATION
  max_results: 1,
  next_token: "NextToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

Returns:

  • (Integer)


5744
5745
5746
5747
5748
5749
5750
5751
# File 'lib/aws-sdk-ssm/types.rb', line 5744

class DescribePatchPropertiesRequest < Struct.new(
  :operating_system,
  :property,
  :patch_set,
  :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)


5744
5745
5746
5747
5748
5749
5750
5751
# File 'lib/aws-sdk-ssm/types.rb', line 5744

class DescribePatchPropertiesRequest < Struct.new(
  :operating_system,
  :property,
  :patch_set,
  :max_results,
  :next_token)
  include Aws::Structure
end

#operating_systemString

The operating system type for which to list patches.

Returns:

  • (String)


5744
5745
5746
5747
5748
5749
5750
5751
# File 'lib/aws-sdk-ssm/types.rb', line 5744

class DescribePatchPropertiesRequest < Struct.new(
  :operating_system,
  :property,
  :patch_set,
  :max_results,
  :next_token)
  include Aws::Structure
end

#patch_setString

Indicates whether to list patches for the Windows operating system or for Microsoft applications. Not applicable for Linux operating systems.

Returns:

  • (String)


5744
5745
5746
5747
5748
5749
5750
5751
# File 'lib/aws-sdk-ssm/types.rb', line 5744

class DescribePatchPropertiesRequest < Struct.new(
  :operating_system,
  :property,
  :patch_set,
  :max_results,
  :next_token)
  include Aws::Structure
end

#propertyString

The patch property for which you want to view patch details.

Returns:

  • (String)


5744
5745
5746
5747
5748
5749
5750
5751
# File 'lib/aws-sdk-ssm/types.rb', line 5744

class DescribePatchPropertiesRequest < Struct.new(
  :operating_system,
  :property,
  :patch_set,
  :max_results,
  :next_token)
  include Aws::Structure
end