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,88 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/sesv2/model/DomainDeliverabilityTrackingOption.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace SESV2
{
namespace Model
{
DomainDeliverabilityTrackingOption::DomainDeliverabilityTrackingOption() :
m_domainHasBeenSet(false),
m_subscriptionStartDateHasBeenSet(false),
m_inboxPlacementTrackingOptionHasBeenSet(false)
{
}
DomainDeliverabilityTrackingOption::DomainDeliverabilityTrackingOption(JsonView jsonValue) :
m_domainHasBeenSet(false),
m_subscriptionStartDateHasBeenSet(false),
m_inboxPlacementTrackingOptionHasBeenSet(false)
{
*this = jsonValue;
}
DomainDeliverabilityTrackingOption& DomainDeliverabilityTrackingOption::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Domain"))
{
m_domain = jsonValue.GetString("Domain");
m_domainHasBeenSet = true;
}
if(jsonValue.ValueExists("SubscriptionStartDate"))
{
m_subscriptionStartDate = jsonValue.GetDouble("SubscriptionStartDate");
m_subscriptionStartDateHasBeenSet = true;
}
if(jsonValue.ValueExists("InboxPlacementTrackingOption"))
{
m_inboxPlacementTrackingOption = jsonValue.GetObject("InboxPlacementTrackingOption");
m_inboxPlacementTrackingOptionHasBeenSet = true;
}
return *this;
}
JsonValue DomainDeliverabilityTrackingOption::Jsonize() const
{
JsonValue payload;
if(m_domainHasBeenSet)
{
payload.WithString("Domain", m_domain);
}
if(m_subscriptionStartDateHasBeenSet)
{
payload.WithDouble("SubscriptionStartDate", m_subscriptionStartDate.SecondsWithMSPrecision());
}
if(m_inboxPlacementTrackingOptionHasBeenSet)
{
payload.WithObject("InboxPlacementTrackingOption", m_inboxPlacementTrackingOption.Jsonize());
}
return payload;
}
} // namespace Model
} // namespace SESV2
} // namespace Aws