/** * 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::CloudDirectory::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; GetObjectInformationResult::GetObjectInformationResult() { } GetObjectInformationResult::GetObjectInformationResult(const Aws::AmazonWebServiceResult& result) { *this = result; } GetObjectInformationResult& GetObjectInformationResult::operator =(const Aws::AmazonWebServiceResult& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("SchemaFacets")) { Aws::Utils::Array schemaFacetsJsonList = jsonValue.GetArray("SchemaFacets"); for(unsigned schemaFacetsIndex = 0; schemaFacetsIndex < schemaFacetsJsonList.GetLength(); ++schemaFacetsIndex) { m_schemaFacets.push_back(schemaFacetsJsonList[schemaFacetsIndex].AsObject()); } } if(jsonValue.ValueExists("ObjectIdentifier")) { m_objectIdentifier = jsonValue.GetString("ObjectIdentifier"); } const auto& headers = result.GetHeaderValueCollection(); const auto& requestIdIter = headers.find("x-amzn-requestid"); if(requestIdIter != headers.end()) { m_requestId = requestIdIter->second; } return *this; }