/** * 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 DataPipeline { namespace Model { Query::Query() : m_selectorsHasBeenSet(false) { } Query::Query(JsonView jsonValue) : m_selectorsHasBeenSet(false) { *this = jsonValue; } Query& Query::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("selectors")) { Aws::Utils::Array selectorsJsonList = jsonValue.GetArray("selectors"); for(unsigned selectorsIndex = 0; selectorsIndex < selectorsJsonList.GetLength(); ++selectorsIndex) { m_selectors.push_back(selectorsJsonList[selectorsIndex].AsObject()); } m_selectorsHasBeenSet = true; } return *this; } JsonValue Query::Jsonize() const { JsonValue payload; if(m_selectorsHasBeenSet) { Aws::Utils::Array selectorsJsonList(m_selectors.size()); for(unsigned selectorsIndex = 0; selectorsIndex < selectorsJsonList.GetLength(); ++selectorsIndex) { selectorsJsonList[selectorsIndex].AsObject(m_selectors[selectorsIndex].Jsonize()); } payload.WithArray("selectors", std::move(selectorsJsonList)); } return payload; } } // namespace Model } // namespace DataPipeline } // namespace Aws