Class: Aws::SSM::Types::PatchSource

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

{
  name: "PatchSourceName", # required
  products: ["PatchSourceProduct"], # required
  configuration: "PatchSourceConfiguration", # required
}

Information about the patches to use to update the instances, including target operating systems and source repository. Applies to Linux instances only.

Instance Attribute Summary collapse

Instance Attribute Details

#configurationString

The value of the yum repo configuration. For example:

‘[main]`

‘cachedir=/var/cache/yum/$basesearch$releasever`

‘keepcache=0`

‘debuglevel=2`

Returns:

  • (String)


12826
12827
12828
12829
12830
12831
# File 'lib/aws-sdk-ssm/types.rb', line 12826

class PatchSource < Struct.new(
  :name,
  :products,
  :configuration)
  include Aws::Structure
end

#nameString

The name specified to identify the patch source.

Returns:

  • (String)


12826
12827
12828
12829
12830
12831
# File 'lib/aws-sdk-ssm/types.rb', line 12826

class PatchSource < Struct.new(
  :name,
  :products,
  :configuration)
  include Aws::Structure
end

#productsArray<String>

The specific operating system versions a patch repository applies to, such as “Ubuntu16.04”, “AmazonLinux2016.09”, “RedhatEnterpriseLinux7.2” or “Suse12.7”. For lists of supported product values, see PatchFilter.

Returns:

  • (Array<String>)


12826
12827
12828
12829
12830
12831
# File 'lib/aws-sdk-ssm/types.rb', line 12826

class PatchSource < Struct.new(
  :name,
  :products,
  :configuration)
  include Aws::Structure
end