1 /** 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0. 4 */ 5 6 #include <aws/glue/model/BatchDeleteConnectionResult.h> 7 #include <aws/core/utils/json/JsonSerializer.h> 8 #include <aws/core/AmazonWebServiceResult.h> 9 #include <aws/core/utils/StringUtils.h> 10 #include <aws/core/utils/UnreferencedParam.h> 11 12 #include <utility> 13 14 using namespace Aws::Glue::Model; 15 using namespace Aws::Utils::Json; 16 using namespace Aws::Utils; 17 using namespace Aws; 18 BatchDeleteConnectionResult()19BatchDeleteConnectionResult::BatchDeleteConnectionResult() 20 { 21 } 22 BatchDeleteConnectionResult(const Aws::AmazonWebServiceResult<JsonValue> & result)23BatchDeleteConnectionResult::BatchDeleteConnectionResult(const Aws::AmazonWebServiceResult<JsonValue>& result) 24 { 25 *this = result; 26 } 27 operator =(const Aws::AmazonWebServiceResult<JsonValue> & result)28BatchDeleteConnectionResult& BatchDeleteConnectionResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result) 29 { 30 JsonView jsonValue = result.GetPayload().View(); 31 if(jsonValue.ValueExists("Succeeded")) 32 { 33 Array<JsonView> succeededJsonList = jsonValue.GetArray("Succeeded"); 34 for(unsigned succeededIndex = 0; succeededIndex < succeededJsonList.GetLength(); ++succeededIndex) 35 { 36 m_succeeded.push_back(succeededJsonList[succeededIndex].AsString()); 37 } 38 } 39 40 if(jsonValue.ValueExists("Errors")) 41 { 42 Aws::Map<Aws::String, JsonView> errorsJsonMap = jsonValue.GetObject("Errors").GetAllObjects(); 43 for(auto& errorsItem : errorsJsonMap) 44 { 45 m_errors[errorsItem.first] = errorsItem.second.AsObject(); 46 } 47 } 48 49 50 51 return *this; 52 } 53