/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace AppMesh { namespace Model { /** *

Deletes a virtual node input.

See Also:

AWS * API Reference

*/ class DeleteVirtualNodeRequest : public AppMeshRequest { public: AWS_APPMESH_API DeleteVirtualNodeRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DeleteVirtualNode"; } AWS_APPMESH_API Aws::String SerializePayload() const override; AWS_APPMESH_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

The name of the service mesh to delete the virtual node in.

*/ inline const Aws::String& GetMeshName() const{ return m_meshName; } /** *

The name of the service mesh to delete the virtual node in.

*/ inline bool MeshNameHasBeenSet() const { return m_meshNameHasBeenSet; } /** *

The name of the service mesh to delete the virtual node in.

*/ inline void SetMeshName(const Aws::String& value) { m_meshNameHasBeenSet = true; m_meshName = value; } /** *

The name of the service mesh to delete the virtual node in.

*/ inline void SetMeshName(Aws::String&& value) { m_meshNameHasBeenSet = true; m_meshName = std::move(value); } /** *

The name of the service mesh to delete the virtual node in.

*/ inline void SetMeshName(const char* value) { m_meshNameHasBeenSet = true; m_meshName.assign(value); } /** *

The name of the service mesh to delete the virtual node in.

*/ inline DeleteVirtualNodeRequest& WithMeshName(const Aws::String& value) { SetMeshName(value); return *this;} /** *

The name of the service mesh to delete the virtual node in.

*/ inline DeleteVirtualNodeRequest& WithMeshName(Aws::String&& value) { SetMeshName(std::move(value)); return *this;} /** *

The name of the service mesh to delete the virtual node in.

*/ inline DeleteVirtualNodeRequest& WithMeshName(const char* value) { SetMeshName(value); return *this;} /** *

The Amazon Web Services IAM account ID of the service mesh owner. If the * account ID is not your own, then it's the ID of the account that shared the mesh * with your account. For more information about mesh sharing, see Working * with shared meshes.

*/ inline const Aws::String& GetMeshOwner() const{ return m_meshOwner; } /** *

The Amazon Web Services IAM account ID of the service mesh owner. If the * account ID is not your own, then it's the ID of the account that shared the mesh * with your account. For more information about mesh sharing, see Working * with shared meshes.

*/ inline bool MeshOwnerHasBeenSet() const { return m_meshOwnerHasBeenSet; } /** *

The Amazon Web Services IAM account ID of the service mesh owner. If the * account ID is not your own, then it's the ID of the account that shared the mesh * with your account. For more information about mesh sharing, see Working * with shared meshes.

*/ inline void SetMeshOwner(const Aws::String& value) { m_meshOwnerHasBeenSet = true; m_meshOwner = value; } /** *

The Amazon Web Services IAM account ID of the service mesh owner. If the * account ID is not your own, then it's the ID of the account that shared the mesh * with your account. For more information about mesh sharing, see Working * with shared meshes.

*/ inline void SetMeshOwner(Aws::String&& value) { m_meshOwnerHasBeenSet = true; m_meshOwner = std::move(value); } /** *

The Amazon Web Services IAM account ID of the service mesh owner. If the * account ID is not your own, then it's the ID of the account that shared the mesh * with your account. For more information about mesh sharing, see Working * with shared meshes.

*/ inline void SetMeshOwner(const char* value) { m_meshOwnerHasBeenSet = true; m_meshOwner.assign(value); } /** *

The Amazon Web Services IAM account ID of the service mesh owner. If the * account ID is not your own, then it's the ID of the account that shared the mesh * with your account. For more information about mesh sharing, see Working * with shared meshes.

*/ inline DeleteVirtualNodeRequest& WithMeshOwner(const Aws::String& value) { SetMeshOwner(value); return *this;} /** *

The Amazon Web Services IAM account ID of the service mesh owner. If the * account ID is not your own, then it's the ID of the account that shared the mesh * with your account. For more information about mesh sharing, see Working * with shared meshes.

*/ inline DeleteVirtualNodeRequest& WithMeshOwner(Aws::String&& value) { SetMeshOwner(std::move(value)); return *this;} /** *

The Amazon Web Services IAM account ID of the service mesh owner. If the * account ID is not your own, then it's the ID of the account that shared the mesh * with your account. For more information about mesh sharing, see Working * with shared meshes.

*/ inline DeleteVirtualNodeRequest& WithMeshOwner(const char* value) { SetMeshOwner(value); return *this;} /** *

The name of the virtual node to delete.

*/ inline const Aws::String& GetVirtualNodeName() const{ return m_virtualNodeName; } /** *

The name of the virtual node to delete.

*/ inline bool VirtualNodeNameHasBeenSet() const { return m_virtualNodeNameHasBeenSet; } /** *

The name of the virtual node to delete.

*/ inline void SetVirtualNodeName(const Aws::String& value) { m_virtualNodeNameHasBeenSet = true; m_virtualNodeName = value; } /** *

The name of the virtual node to delete.

*/ inline void SetVirtualNodeName(Aws::String&& value) { m_virtualNodeNameHasBeenSet = true; m_virtualNodeName = std::move(value); } /** *

The name of the virtual node to delete.

*/ inline void SetVirtualNodeName(const char* value) { m_virtualNodeNameHasBeenSet = true; m_virtualNodeName.assign(value); } /** *

The name of the virtual node to delete.

*/ inline DeleteVirtualNodeRequest& WithVirtualNodeName(const Aws::String& value) { SetVirtualNodeName(value); return *this;} /** *

The name of the virtual node to delete.

*/ inline DeleteVirtualNodeRequest& WithVirtualNodeName(Aws::String&& value) { SetVirtualNodeName(std::move(value)); return *this;} /** *

The name of the virtual node to delete.

*/ inline DeleteVirtualNodeRequest& WithVirtualNodeName(const char* value) { SetVirtualNodeName(value); return *this;} private: Aws::String m_meshName; bool m_meshNameHasBeenSet = false; Aws::String m_meshOwner; bool m_meshOwnerHasBeenSet = false; Aws::String m_virtualNodeName; bool m_virtualNodeNameHasBeenSet = false; }; } // namespace Model } // namespace AppMesh } // namespace Aws