Class: Aws::SSM::Types::EffectivePatch
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::EffectivePatch
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
The ‘EffectivePatch` structure defines metadata about a patch along with the approval state of the patch in a particular patch baseline. The approval state includes information about whether the patch is currently approved, due to be approved by a rule, explicitly approved, or explicitly rejected and the date the patch was or will be approved.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#patch ⇒ Types::Patch
Provides metadata for a patch, including information such as the KB ID, severity, classification and a URL for where more information can be obtained about the patch.
-
#patch_status ⇒ Types::PatchStatus
The status of the patch in a patch baseline.
Instance Attribute Details
#patch ⇒ Types::Patch
Provides metadata for a patch, including information such as the KB ID, severity, classification and a URL for where more information can be obtained about the patch.
7284 7285 7286 7287 7288 7289 |
# File 'lib/aws-sdk-ssm/types.rb', line 7284 class EffectivePatch < Struct.new( :patch, :patch_status) SENSITIVE = [] include Aws::Structure end |
#patch_status ⇒ Types::PatchStatus
The status of the patch in a patch baseline. This includes information about whether the patch is currently approved, due to be approved by a rule, explicitly approved, or explicitly rejected and the date the patch was or will be approved.
7284 7285 7286 7287 7288 7289 |
# File 'lib/aws-sdk-ssm/types.rb', line 7284 class EffectivePatch < Struct.new( :patch, :patch_status) SENSITIVE = [] include Aws::Structure end |