/** * 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::EKS::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; ListNodegroupsResult::ListNodegroupsResult() { } ListNodegroupsResult::ListNodegroupsResult(const Aws::AmazonWebServiceResult& result) { *this = result; } ListNodegroupsResult& ListNodegroupsResult::operator =(const Aws::AmazonWebServiceResult& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("nodegroups")) { Array nodegroupsJsonList = jsonValue.GetArray("nodegroups"); for(unsigned nodegroupsIndex = 0; nodegroupsIndex < nodegroupsJsonList.GetLength(); ++nodegroupsIndex) { m_nodegroups.push_back(nodegroupsJsonList[nodegroupsIndex].AsString()); } } if(jsonValue.ValueExists("nextToken")) { m_nextToken = jsonValue.GetString("nextToken"); } return *this; }