Class: Aws::Backup::Types::UpdateRegionSettingsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::UpdateRegionSettingsInput
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
Note:
When making an API call, you may pass UpdateRegionSettingsInput data as a hash:
{
resource_type_opt_in_preference: {
"ResourceType" => false,
},
resource_type_management_preference: {
"ResourceType" => false,
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_type_management_preference ⇒ Hash<String,Boolean>
Enables or disables full Backup management of backups for a resource type.
-
#resource_type_opt_in_preference ⇒ Hash<String,Boolean>
Updates the list of services along with the opt-in preferences for the Region.
Instance Attribute Details
#resource_type_management_preference ⇒ Hash<String,Boolean>
Enables or disables full Backup management of backups for a resource type. To enable full Backup management for DynamoDB along with Backup's advanced DynamoDB backup features, follow the procedure to enable advanced DynamoDB backup programmatically.
6564 6565 6566 6567 6568 6569 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 6564 class UpdateRegionSettingsInput < Struct.new( :resource_type_opt_in_preference, :resource_type_management_preference) SENSITIVE = [] include Aws::Structure end |
#resource_type_opt_in_preference ⇒ Hash<String,Boolean>
Updates the list of services along with the opt-in preferences for the Region.
6564 6565 6566 6567 6568 6569 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 6564 class UpdateRegionSettingsInput < Struct.new( :resource_type_opt_in_preference, :resource_type_management_preference) SENSITIVE = [] include Aws::Structure end |