| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.SSM.Types.PatchSource
Description
Synopsis
Documentation
data PatchSource Source #
Information about the patches to use to update the managed nodes, including target operating systems and source repository. Applies to Linux managed nodes only.
See: newPatchSource smart constructor.
Constructors
| PatchSource' | |
Fields
| |
Instances
Arguments
| :: Text | |
| -> NonEmpty Text | |
| -> Text | |
| -> PatchSource |
Create a value of PatchSource with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:name:PatchSource', patchSource_name - The name specified to identify the patch source.
$sel:products:PatchSource', patchSource_products - 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.
$sel:configuration:PatchSource', patchSource_configuration - The value of the yum repo configuration. For example:
[main]
name=MyCustomRepository
baseurl=https://my-custom-repository
enabled=1
For information about other options available for your yum repository configuration, see dnf.conf(5).
patchSource_name :: Lens' PatchSource Text Source #
The name specified to identify the patch source.
patchSource_products :: Lens' PatchSource (NonEmpty Text) Source #
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.
patchSource_configuration :: Lens' PatchSource Text Source #
The value of the yum repo configuration. For example:
[main]
name=MyCustomRepository
baseurl=https://my-custom-repository
enabled=1
For information about other options available for your yum repository configuration, see dnf.conf(5).