1 /** 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0. 4 */ 5 6 #pragma once 7 #include <aws/route53-recovery-control-config/Route53RecoveryControlConfig_EXPORTS.h> 8 #include <aws/route53-recovery-control-config/model/RoutingControl.h> 9 #include <utility> 10 11 namespace Aws 12 { 13 template<typename RESULT_TYPE> 14 class AmazonWebServiceResult; 15 16 namespace Utils 17 { 18 namespace Json 19 { 20 class JsonValue; 21 } // namespace Json 22 } // namespace Utils 23 namespace Route53RecoveryControlConfig 24 { 25 namespace Model 26 { 27 class AWS_ROUTE53RECOVERYCONTROLCONFIG_API UpdateRoutingControlResult 28 { 29 public: 30 UpdateRoutingControlResult(); 31 UpdateRoutingControlResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); 32 UpdateRoutingControlResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); 33 34 35 /** 36 * <p>The routing control that was updated.</p> 37 */ GetRoutingControl()38 inline const RoutingControl& GetRoutingControl() const{ return m_routingControl; } 39 40 /** 41 * <p>The routing control that was updated.</p> 42 */ SetRoutingControl(const RoutingControl & value)43 inline void SetRoutingControl(const RoutingControl& value) { m_routingControl = value; } 44 45 /** 46 * <p>The routing control that was updated.</p> 47 */ SetRoutingControl(RoutingControl && value)48 inline void SetRoutingControl(RoutingControl&& value) { m_routingControl = std::move(value); } 49 50 /** 51 * <p>The routing control that was updated.</p> 52 */ WithRoutingControl(const RoutingControl & value)53 inline UpdateRoutingControlResult& WithRoutingControl(const RoutingControl& value) { SetRoutingControl(value); return *this;} 54 55 /** 56 * <p>The routing control that was updated.</p> 57 */ WithRoutingControl(RoutingControl && value)58 inline UpdateRoutingControlResult& WithRoutingControl(RoutingControl&& value) { SetRoutingControl(std::move(value)); return *this;} 59 60 private: 61 62 RoutingControl m_routingControl; 63 }; 64 65 } // namespace Model 66 } // namespace Route53RecoveryControlConfig 67 } // namespace Aws 68