Class: Aws::CloudHSMV2::Types::ModifyBackupAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudHSMV2::Types::ModifyBackupAttributesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudhsmv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#backup_id ⇒ String
The identifier (ID) of the backup to modify.
-
#never_expires ⇒ Boolean
Specifies whether the service should exempt a backup from the retention policy for the cluster.
Instance Attribute Details
#backup_id ⇒ String
The identifier (ID) of the backup to modify. To find the ID of a backup, use the DescribeBackups operation.
964 965 966 967 968 969 |
# File 'lib/aws-sdk-cloudhsmv2/types.rb', line 964 class ModifyBackupAttributesRequest < Struct.new( :backup_id, :never_expires) SENSITIVE = [] include Aws::Structure end |
#never_expires ⇒ Boolean
Specifies whether the service should exempt a backup from the retention policy for the cluster. ‘True` exempts a backup from the retention policy. `False` means the service applies the backup retention policy defined at the cluster.
964 965 966 967 968 969 |
# File 'lib/aws-sdk-cloudhsmv2/types.rb', line 964 class ModifyBackupAttributesRequest < Struct.new( :backup_id, :never_expires) SENSITIVE = [] include Aws::Structure end |