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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ssm/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[:configuration]

Instance Attribute Summary collapse

Instance Attribute Details

#configurationString

The value of the yum repo configuration. For example:

‘[main]`

‘name=MyCustomRepository`

‘baseurl=my-custom-repository`

‘enabled=1`

<note markdown=“1”> For information about other options available for your yum repository configuration, see [dnf.conf(5)].

</note>

[1]: man7.org/linux/man-pages/man5/dnf.conf.5.html

Returns:

  • (String)


14926
14927
14928
14929
14930
14931
14932
# File 'lib/aws-sdk-ssm/types.rb', line 14926

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

#nameString

The name specified to identify the patch source.

Returns:

  • (String)


14926
14927
14928
14929
14930
14931
14932
# File 'lib/aws-sdk-ssm/types.rb', line 14926

class PatchSource < Struct.new(
  :name,
  :products,
  :configuration)
  SENSITIVE = [: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>)


14926
14927
14928
14929
14930
14931
14932
# File 'lib/aws-sdk-ssm/types.rb', line 14926

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