This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-appmesh/include/aws/appmesh/model/DescribeMeshResult.h

73 lines
1.7 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/appmesh/AppMesh_EXPORTS.h>
#include <aws/appmesh/model/MeshData.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace AppMesh
{
namespace Model
{
/**
* <p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeMeshOutput">AWS
* API Reference</a></p>
*/
class AWS_APPMESH_API DescribeMeshResult
{
public:
DescribeMeshResult();
DescribeMeshResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeMeshResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The full description of your service mesh.</p>
*/
inline const MeshData& GetMesh() const{ return m_mesh; }
/**
* <p>The full description of your service mesh.</p>
*/
inline void SetMesh(const MeshData& value) { m_mesh = value; }
/**
* <p>The full description of your service mesh.</p>
*/
inline void SetMesh(MeshData&& value) { m_mesh = std::move(value); }
/**
* <p>The full description of your service mesh.</p>
*/
inline DescribeMeshResult& WithMesh(const MeshData& value) { SetMesh(value); return *this;}
/**
* <p>The full description of your service mesh.</p>
*/
inline DescribeMeshResult& WithMesh(MeshData&& value) { SetMesh(std::move(value)); return *this;}
private:
MeshData m_mesh;
};
} // namespace Model
} // namespace AppMesh
} // namespace Aws