/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides information about the target engine for the specified source
* database.See Also:
AWS
* API Reference
The recommendation of a target Amazon RDS database engine.
*/ inline const RdsRecommendation& GetRdsEngine() const{ return m_rdsEngine; } /** *The recommendation of a target Amazon RDS database engine.
*/ inline bool RdsEngineHasBeenSet() const { return m_rdsEngineHasBeenSet; } /** *The recommendation of a target Amazon RDS database engine.
*/ inline void SetRdsEngine(const RdsRecommendation& value) { m_rdsEngineHasBeenSet = true; m_rdsEngine = value; } /** *The recommendation of a target Amazon RDS database engine.
*/ inline void SetRdsEngine(RdsRecommendation&& value) { m_rdsEngineHasBeenSet = true; m_rdsEngine = std::move(value); } /** *The recommendation of a target Amazon RDS database engine.
*/ inline RecommendationData& WithRdsEngine(const RdsRecommendation& value) { SetRdsEngine(value); return *this;} /** *The recommendation of a target Amazon RDS database engine.
*/ inline RecommendationData& WithRdsEngine(RdsRecommendation&& value) { SetRdsEngine(std::move(value)); return *this;} private: RdsRecommendation m_rdsEngine; bool m_rdsEngineHasBeenSet = false; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws