83 lines
1.7 KiB
C++
83 lines
1.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/elasticmapreduce/model/ScriptBootstrapActionConfig.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace EMR
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
ScriptBootstrapActionConfig::ScriptBootstrapActionConfig() :
|
|
m_pathHasBeenSet(false),
|
|
m_argsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
ScriptBootstrapActionConfig::ScriptBootstrapActionConfig(JsonView jsonValue) :
|
|
m_pathHasBeenSet(false),
|
|
m_argsHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
ScriptBootstrapActionConfig& ScriptBootstrapActionConfig::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("Path"))
|
|
{
|
|
m_path = jsonValue.GetString("Path");
|
|
|
|
m_pathHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Args"))
|
|
{
|
|
Array<JsonView> argsJsonList = jsonValue.GetArray("Args");
|
|
for(unsigned argsIndex = 0; argsIndex < argsJsonList.GetLength(); ++argsIndex)
|
|
{
|
|
m_args.push_back(argsJsonList[argsIndex].AsString());
|
|
}
|
|
m_argsHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue ScriptBootstrapActionConfig::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_pathHasBeenSet)
|
|
{
|
|
payload.WithString("Path", m_path);
|
|
|
|
}
|
|
|
|
if(m_argsHasBeenSet)
|
|
{
|
|
Array<JsonValue> argsJsonList(m_args.size());
|
|
for(unsigned argsIndex = 0; argsIndex < argsJsonList.GetLength(); ++argsIndex)
|
|
{
|
|
argsJsonList[argsIndex].AsString(m_args[argsIndex]);
|
|
}
|
|
payload.WithArray("Args", std::move(argsJsonList));
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace EMR
|
|
} // namespace Aws
|