/**
* 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 name of the service mesh to delete.
*/ inline const Aws::String& GetMeshName() const{ return m_meshName; } /** *The name of the service mesh to delete.
*/ inline bool MeshNameHasBeenSet() const { return m_meshNameHasBeenSet; } /** *The name of the service mesh to delete.
*/ inline void SetMeshName(const Aws::String& value) { m_meshNameHasBeenSet = true; m_meshName = value; } /** *The name of the service mesh to delete.
*/ inline void SetMeshName(Aws::String&& value) { m_meshNameHasBeenSet = true; m_meshName = std::move(value); } /** *The name of the service mesh to delete.
*/ inline void SetMeshName(const char* value) { m_meshNameHasBeenSet = true; m_meshName.assign(value); } /** *The name of the service mesh to delete.
*/ inline DeleteMeshRequest& WithMeshName(const Aws::String& value) { SetMeshName(value); return *this;} /** *The name of the service mesh to delete.
*/ inline DeleteMeshRequest& WithMeshName(Aws::String&& value) { SetMeshName(std::move(value)); return *this;} /** *The name of the service mesh to delete.
*/ inline DeleteMeshRequest& WithMeshName(const char* value) { SetMeshName(value); return *this;} private: Aws::String m_meshName; bool m_meshNameHasBeenSet = false; }; } // namespace Model } // namespace AppMesh } // namespace Aws