/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the returned data in response to a request action.See
* Also:
AWS
* API Reference
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