/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include #include using namespace Aws::Schemas::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; SearchSchemasResult::SearchSchemasResult() { } SearchSchemasResult::SearchSchemasResult(const Aws::AmazonWebServiceResult& result) { *this = result; } SearchSchemasResult& SearchSchemasResult::operator =(const Aws::AmazonWebServiceResult& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("NextToken")) { m_nextToken = jsonValue.GetString("NextToken"); } if(jsonValue.ValueExists("Schemas")) { Array schemasJsonList = jsonValue.GetArray("Schemas"); for(unsigned schemasIndex = 0; schemasIndex < schemasJsonList.GetLength(); ++schemasIndex) { m_schemas.push_back(schemasJsonList[schemasIndex].AsObject()); } } return *this; }