Class: Aws::StorageGateway::Types::SoftwareUpdatePreferences
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::SoftwareUpdatePreferences
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-storagegateway/types.rb
Overview
A set of variables indicating the software update preferences for the gateway.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#automatic_update_policy ⇒ String
Indicates the automatic update policy for a gateway.
Instance Attribute Details
#automatic_update_policy ⇒ String
Indicates the automatic update policy for a gateway.
‘ALL_VERSIONS` - Enables regular gateway maintenance updates.
‘EMERGENCY_VERSIONS_ONLY` - Disables regular gateway maintenance updates. The gateway will still receive emergency version updates on rare occasions if necessary to remedy highly critical security or durability issues. You will be notified before an emergency version update is applied. These updates are applied during your gateway’s scheduled maintenance window.
6057 6058 6059 6060 6061 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 6057 class SoftwareUpdatePreferences < Struct.new( :automatic_update_policy) SENSITIVE = [] include Aws::Structure end |