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,95 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/pinpoint/model/JourneyLimits.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace Pinpoint
{
namespace Model
{
JourneyLimits::JourneyLimits() :
m_dailyCap(0),
m_dailyCapHasBeenSet(false),
m_endpointReentryCap(0),
m_endpointReentryCapHasBeenSet(false),
m_messagesPerSecond(0),
m_messagesPerSecondHasBeenSet(false)
{
}
JourneyLimits::JourneyLimits(JsonView jsonValue) :
m_dailyCap(0),
m_dailyCapHasBeenSet(false),
m_endpointReentryCap(0),
m_endpointReentryCapHasBeenSet(false),
m_messagesPerSecond(0),
m_messagesPerSecondHasBeenSet(false)
{
*this = jsonValue;
}
JourneyLimits& JourneyLimits::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("DailyCap"))
{
m_dailyCap = jsonValue.GetInteger("DailyCap");
m_dailyCapHasBeenSet = true;
}
if(jsonValue.ValueExists("EndpointReentryCap"))
{
m_endpointReentryCap = jsonValue.GetInteger("EndpointReentryCap");
m_endpointReentryCapHasBeenSet = true;
}
if(jsonValue.ValueExists("MessagesPerSecond"))
{
m_messagesPerSecond = jsonValue.GetInteger("MessagesPerSecond");
m_messagesPerSecondHasBeenSet = true;
}
return *this;
}
JsonValue JourneyLimits::Jsonize() const
{
JsonValue payload;
if(m_dailyCapHasBeenSet)
{
payload.WithInteger("DailyCap", m_dailyCap);
}
if(m_endpointReentryCapHasBeenSet)
{
payload.WithInteger("EndpointReentryCap", m_endpointReentryCap);
}
if(m_messagesPerSecondHasBeenSet)
{
payload.WithInteger("MessagesPerSecond", m_messagesPerSecond);
}
return payload;
}
} // namespace Model
} // namespace Pinpoint
} // namespace Aws