feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,90 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/gamelift/GameLift_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace GameLift
{
namespace Model
{
/**
* <p>Represents the returned data in response to a request action.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/gamelift-2015-10-01/PutScalingPolicyOutput">AWS
* API Reference</a></p>
*/
class AWS_GAMELIFT_API PutScalingPolicyResult
{
public:
PutScalingPolicyResult();
PutScalingPolicyResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
PutScalingPolicyResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A descriptive label that is associated with a scaling policy. Policy names do
* not need to be unique.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>A descriptive label that is associated with a scaling policy. Policy names do
* not need to be unique.</p>
*/
inline void SetName(const Aws::String& value) { m_name = value; }
/**
* <p>A descriptive label that is associated with a scaling policy. Policy names do
* not need to be unique.</p>
*/
inline void SetName(Aws::String&& value) { m_name = std::move(value); }
/**
* <p>A descriptive label that is associated with a scaling policy. Policy names do
* not need to be unique.</p>
*/
inline void SetName(const char* value) { m_name.assign(value); }
/**
* <p>A descriptive label that is associated with a scaling policy. Policy names do
* not need to be unique.</p>
*/
inline PutScalingPolicyResult& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>A descriptive label that is associated with a scaling policy. Policy names do
* not need to be unique.</p>
*/
inline PutScalingPolicyResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>A descriptive label that is associated with a scaling policy. Policy names do
* not need to be unique.</p>
*/
inline PutScalingPolicyResult& WithName(const char* value) { SetName(value); return *this;}
private:
Aws::String m_name;
};
} // namespace Model
} // namespace GameLift
} // namespace Aws