/*
* 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 migrationhubstrategy-2020-02-19.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.MigrationHubStrategyRecommendations.Model
{
///
/// Container for the parameters to the PutPortfolioPreferences operation.
/// Saves the specified migration and modernization preferences.
///
public partial class PutPortfolioPreferencesRequest : AmazonMigrationHubStrategyRecommendationsRequest
{
private ApplicationMode _applicationMode;
private ApplicationPreferences _applicationPreferences;
private DatabasePreferences _databasePreferences;
private PrioritizeBusinessGoals _prioritizeBusinessGoals;
///
/// Gets and sets the property ApplicationMode.
///
/// The classification for application component types.
///
///
public ApplicationMode ApplicationMode
{
get { return this._applicationMode; }
set { this._applicationMode = value; }
}
// Check to see if ApplicationMode property is set
internal bool IsSetApplicationMode()
{
return this._applicationMode != null;
}
///
/// Gets and sets the property ApplicationPreferences.
///
/// The transformation preferences for non-database applications.
///
///
public ApplicationPreferences ApplicationPreferences
{
get { return this._applicationPreferences; }
set { this._applicationPreferences = value; }
}
// Check to see if ApplicationPreferences property is set
internal bool IsSetApplicationPreferences()
{
return this._applicationPreferences != null;
}
///
/// Gets and sets the property DatabasePreferences.
///
/// The transformation preferences for database applications.
///
///
public DatabasePreferences DatabasePreferences
{
get { return this._databasePreferences; }
set { this._databasePreferences = value; }
}
// Check to see if DatabasePreferences property is set
internal bool IsSetDatabasePreferences()
{
return this._databasePreferences != null;
}
///
/// Gets and sets the property PrioritizeBusinessGoals.
///
/// The rank of the business goals based on priority.
///
///
public PrioritizeBusinessGoals PrioritizeBusinessGoals
{
get { return this._prioritizeBusinessGoals; }
set { this._prioritizeBusinessGoals = value; }
}
// Check to see if PrioritizeBusinessGoals property is set
internal bool IsSetPrioritizeBusinessGoals()
{
return this._prioritizeBusinessGoals != null;
}
}
}