/** * 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::OpsWorksCM::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; using namespace Aws; ExportServerEngineAttributeResult::ExportServerEngineAttributeResult() { } ExportServerEngineAttributeResult::ExportServerEngineAttributeResult(const Aws::AmazonWebServiceResult& result) { *this = result; } ExportServerEngineAttributeResult& ExportServerEngineAttributeResult::operator =(const Aws::AmazonWebServiceResult& result) { JsonView jsonValue = result.GetPayload().View(); if(jsonValue.ValueExists("EngineAttribute")) { m_engineAttribute = jsonValue.GetObject("EngineAttribute"); } if(jsonValue.ValueExists("ServerName")) { m_serverName = jsonValue.GetString("ServerName"); } return *this; }