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/CheckSchemaVersionValidityResult.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 CheckSchemaVersionValidityResult()19CheckSchemaVersionValidityResult::CheckSchemaVersionValidityResult() : 20 m_valid(false) 21 { 22 } 23 CheckSchemaVersionValidityResult(const Aws::AmazonWebServiceResult<JsonValue> & result)24CheckSchemaVersionValidityResult::CheckSchemaVersionValidityResult(const Aws::AmazonWebServiceResult<JsonValue>& result) : 25 m_valid(false) 26 { 27 *this = result; 28 } 29 operator =(const Aws::AmazonWebServiceResult<JsonValue> & result)30CheckSchemaVersionValidityResult& CheckSchemaVersionValidityResult::operator =(const Aws::AmazonWebServiceResult<JsonValue>& result) 31 { 32 JsonView jsonValue = result.GetPayload().View(); 33 if(jsonValue.ValueExists("Valid")) 34 { 35 m_valid = jsonValue.GetBool("Valid"); 36 37 } 38 39 if(jsonValue.ValueExists("Error")) 40 { 41 m_error = jsonValue.GetString("Error"); 42 43 } 44 45 46 47 return *this; 48 } 49