Class: Aws::CloudHSMV2::Types::ModifyBackupAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudHSMV2::Types::ModifyBackupAttributesRequest
- Defined in:
- gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb
Overview
Note:
When making an API call, you may pass ModifyBackupAttributesRequest data as a hash:
{
backup_id: "BackupId", # required
never_expires: false, # required
}
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.
982 983 984 985 986 987 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 982 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.
982 983 984 985 986 987 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 982 class ModifyBackupAttributesRequest < Struct.new( :backup_id, :never_expires) SENSITIVE = [] include Aws::Structure end |