/** * 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 { /** *

Represents the returned data in response to a request action.

See * Also:

AWS * API Reference

*/ class AWS_GAMELIFT_API PutScalingPolicyResult { public: PutScalingPolicyResult(); PutScalingPolicyResult(const Aws::AmazonWebServiceResult& result); PutScalingPolicyResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A descriptive label that is associated with a 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 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 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 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 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 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 scaling policy. Policy names do * not need to be unique.

*/ inline PutScalingPolicyResult& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_name; }; } // namespace Model } // namespace GameLift } // namespace Aws