/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace GameLift { namespace Model { class PutScalingPolicyResult { public: AWS_GAMELIFT_API PutScalingPolicyResult(); AWS_GAMELIFT_API PutScalingPolicyResult(const Aws::AmazonWebServiceResult& result); AWS_GAMELIFT_API PutScalingPolicyResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A descriptive label that is associated with a fleet's scaling policy. Policy * names do not need to be unique.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

A descriptive label that is associated with a fleet's scaling policy. Policy * names do not need to be unique.

*/ inline void SetName(const Aws::String& value) { m_name = value; } /** *

A descriptive label that is associated with a fleet's scaling policy. Policy * names do not need to be unique.

*/ inline void SetName(Aws::String&& value) { m_name = std::move(value); } /** *

A descriptive label that is associated with a fleet's scaling policy. Policy * names do not need to be unique.

*/ inline void SetName(const char* value) { m_name.assign(value); } /** *

A descriptive label that is associated with a fleet's scaling policy. Policy * names do not need to be unique.

*/ inline PutScalingPolicyResult& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

A descriptive label that is associated with a fleet's scaling policy. Policy * names do not need to be unique.

*/ inline PutScalingPolicyResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

A descriptive label that is associated with a fleet's scaling policy. Policy * names do not need to be unique.

*/ inline PutScalingPolicyResult& WithName(const char* value) { SetName(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline PutScalingPolicyResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline PutScalingPolicyResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline PutScalingPolicyResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_name; Aws::String m_requestId; }; } // namespace Model } // namespace GameLift } // namespace Aws