/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include 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")) { Aws::Utils::Array 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) { Aws::Utils::Array 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