/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the backup-2018-11-15.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.Backup.Model { /// /// This is the response object from the DescribeRegionSettings operation. /// public partial class DescribeRegionSettingsResponse : AmazonWebServiceResponse { private Dictionary _resourceTypeManagementPreference = new Dictionary(); private Dictionary _resourceTypeOptInPreference = new Dictionary(); /// /// Gets and sets the property ResourceTypeManagementPreference. /// /// Returns whether Backup fully manages the backups for a resource type. /// /// /// /// For the benefits of full Backup management, see /// Full Backup management. /// /// /// /// For a list of resource types and whether each supports full Backup management, see /// the /// Feature availability by resource table. /// /// /// /// If "DynamoDB":false, you can enable full Backup management for DynamoDB /// backup by enabling /// Backup's advanced DynamoDB backup features. /// /// public Dictionary ResourceTypeManagementPreference { get { return this._resourceTypeManagementPreference; } set { this._resourceTypeManagementPreference = value; } } // Check to see if ResourceTypeManagementPreference property is set internal bool IsSetResourceTypeManagementPreference() { return this._resourceTypeManagementPreference != null && this._resourceTypeManagementPreference.Count > 0; } /// /// Gets and sets the property ResourceTypeOptInPreference. /// /// Returns a list of all services along with the opt-in preferences in the Region. /// /// public Dictionary ResourceTypeOptInPreference { get { return this._resourceTypeOptInPreference; } set { this._resourceTypeOptInPreference = value; } } // Check to see if ResourceTypeOptInPreference property is set internal bool IsSetResourceTypeOptInPreference() { return this._resourceTypeOptInPreference != null && this._resourceTypeOptInPreference.Count > 0; } } }