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,120 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/mediaconvert/model/CaptionDescription.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace MediaConvert
{
namespace Model
{
CaptionDescription::CaptionDescription() :
m_captionSelectorNameHasBeenSet(false),
m_customLanguageCodeHasBeenSet(false),
m_destinationSettingsHasBeenSet(false),
m_languageCode(LanguageCode::NOT_SET),
m_languageCodeHasBeenSet(false),
m_languageDescriptionHasBeenSet(false)
{
}
CaptionDescription::CaptionDescription(JsonView jsonValue) :
m_captionSelectorNameHasBeenSet(false),
m_customLanguageCodeHasBeenSet(false),
m_destinationSettingsHasBeenSet(false),
m_languageCode(LanguageCode::NOT_SET),
m_languageCodeHasBeenSet(false),
m_languageDescriptionHasBeenSet(false)
{
*this = jsonValue;
}
CaptionDescription& CaptionDescription::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("captionSelectorName"))
{
m_captionSelectorName = jsonValue.GetString("captionSelectorName");
m_captionSelectorNameHasBeenSet = true;
}
if(jsonValue.ValueExists("customLanguageCode"))
{
m_customLanguageCode = jsonValue.GetString("customLanguageCode");
m_customLanguageCodeHasBeenSet = true;
}
if(jsonValue.ValueExists("destinationSettings"))
{
m_destinationSettings = jsonValue.GetObject("destinationSettings");
m_destinationSettingsHasBeenSet = true;
}
if(jsonValue.ValueExists("languageCode"))
{
m_languageCode = LanguageCodeMapper::GetLanguageCodeForName(jsonValue.GetString("languageCode"));
m_languageCodeHasBeenSet = true;
}
if(jsonValue.ValueExists("languageDescription"))
{
m_languageDescription = jsonValue.GetString("languageDescription");
m_languageDescriptionHasBeenSet = true;
}
return *this;
}
JsonValue CaptionDescription::Jsonize() const
{
JsonValue payload;
if(m_captionSelectorNameHasBeenSet)
{
payload.WithString("captionSelectorName", m_captionSelectorName);
}
if(m_customLanguageCodeHasBeenSet)
{
payload.WithString("customLanguageCode", m_customLanguageCode);
}
if(m_destinationSettingsHasBeenSet)
{
payload.WithObject("destinationSettings", m_destinationSettings.Jsonize());
}
if(m_languageCodeHasBeenSet)
{
payload.WithString("languageCode", LanguageCodeMapper::GetNameForLanguageCode(m_languageCode));
}
if(m_languageDescriptionHasBeenSet)
{
payload.WithString("languageDescription", m_languageDescription);
}
return payload;
}
} // namespace Model
} // namespace MediaConvert
} // namespace Aws