/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The full description of your service mesh following the create call.
*/ inline const MeshData& GetMesh() const{ return m_mesh; } /** *The full description of your service mesh following the create call.
*/ inline void SetMesh(const MeshData& value) { m_mesh = value; } /** *The full description of your service mesh following the create call.
*/ inline void SetMesh(MeshData&& value) { m_mesh = std::move(value); } /** *The full description of your service mesh following the create call.
*/ inline CreateMeshResult& WithMesh(const MeshData& value) { SetMesh(value); return *this;} /** *The full description of your service mesh following the create call.
*/ inline CreateMeshResult& WithMesh(MeshData&& value) { SetMesh(std::move(value)); return *this;} private: MeshData m_mesh; }; } // namespace Model } // namespace AppMesh } // namespace Aws