Class: Aws::EFS::Types::BackupPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::BackupPolicy
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
The backup policy for the file system used to create automatic daily
backups. If status has a value of ENABLED
, the file system is being
automatically backed up. For more information, see Automatic
backups.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
Describes the status of the file system's backup policy.
Instance Attribute Details
#status ⇒ String
Describes the status of the file system's backup policy.
ENABLED
– EFS is automatically backing up the file system.ENABLING
– EFS is turning on automatic backups for the file system.DISABLED
– Automatic back ups are turned off for the file system.DISABLING
– EFS is turning off automatic backups for the file system.
234 235 236 237 238 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 234 class BackupPolicy < Struct.new( :status) SENSITIVE = [] include Aws::Structure end |