/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include #include #include using namespace Aws::EMR::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; ListClustersResult::ListClustersResult() { } ListClustersResult::ListClustersResult(const Aws::AmazonWebServiceResult& result) { *this = result; } ListClustersResult& ListClustersResult::operator =(const Aws::AmazonWebServiceResult& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("Clusters")) { Aws::Utils::Array clustersJsonList = jsonValue.GetArray("Clusters"); for(unsigned clustersIndex = 0; clustersIndex < clustersJsonList.GetLength(); ++clustersIndex) { m_clusters.push_back(clustersJsonList[clustersIndex].AsObject()); } } if(jsonValue.ValueExists("Marker")) { m_marker = jsonValue.GetString("Marker"); } const auto& headers = result.GetHeaderValueCollection(); const auto& requestIdIter = headers.find("x-amzn-requestid"); if(requestIdIter != headers.end()) { m_requestId = requestIdIter->second; } return *this; }