AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeMeshRequest.h
1
6#pragma once
7#include <aws/appmesh/AppMesh_EXPORTS.h>
8#include <aws/appmesh/AppMeshRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace AppMesh
19{
20namespace Model
21{
22
29 {
30 public:
31 AWS_APPMESH_API DescribeMeshRequest();
32
33 // Service request name is the Operation name which will send this request out,
34 // each operation should has unique request name, so that we can get operation's name from this request.
35 // Note: this is not true for response, multiple operations may have the same response name,
36 // so we can not get operation's name from response.
37 inline virtual const char* GetServiceRequestName() const override { return "DescribeMesh"; }
38
39 AWS_APPMESH_API Aws::String SerializePayload() const override;
40
41 AWS_APPMESH_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
42
43
45
48 inline const Aws::String& GetMeshName() const{ return m_meshName; }
49 inline bool MeshNameHasBeenSet() const { return m_meshNameHasBeenSet; }
50 inline void SetMeshName(const Aws::String& value) { m_meshNameHasBeenSet = true; m_meshName = value; }
51 inline void SetMeshName(Aws::String&& value) { m_meshNameHasBeenSet = true; m_meshName = std::move(value); }
52 inline void SetMeshName(const char* value) { m_meshNameHasBeenSet = true; m_meshName.assign(value); }
53 inline DescribeMeshRequest& WithMeshName(const Aws::String& value) { SetMeshName(value); return *this;}
54 inline DescribeMeshRequest& WithMeshName(Aws::String&& value) { SetMeshName(std::move(value)); return *this;}
55 inline DescribeMeshRequest& WithMeshName(const char* value) { SetMeshName(value); return *this;}
57
59
66 inline const Aws::String& GetMeshOwner() const{ return m_meshOwner; }
67 inline bool MeshOwnerHasBeenSet() const { return m_meshOwnerHasBeenSet; }
68 inline void SetMeshOwner(const Aws::String& value) { m_meshOwnerHasBeenSet = true; m_meshOwner = value; }
69 inline void SetMeshOwner(Aws::String&& value) { m_meshOwnerHasBeenSet = true; m_meshOwner = std::move(value); }
70 inline void SetMeshOwner(const char* value) { m_meshOwnerHasBeenSet = true; m_meshOwner.assign(value); }
71 inline DescribeMeshRequest& WithMeshOwner(const Aws::String& value) { SetMeshOwner(value); return *this;}
72 inline DescribeMeshRequest& WithMeshOwner(Aws::String&& value) { SetMeshOwner(std::move(value)); return *this;}
73 inline DescribeMeshRequest& WithMeshOwner(const char* value) { SetMeshOwner(value); return *this;}
75 private:
76
77 Aws::String m_meshName;
78 bool m_meshNameHasBeenSet = false;
79
80 Aws::String m_meshOwner;
81 bool m_meshOwnerHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace AppMesh
86} // namespace Aws
AWS_APPMESH_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
void SetMeshOwner(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
DescribeMeshRequest & WithMeshOwner(Aws::String &&value)
DescribeMeshRequest & WithMeshOwner(const char *value)
void SetMeshName(const Aws::String &value)
DescribeMeshRequest & WithMeshName(const Aws::String &value)
DescribeMeshRequest & WithMeshName(const char *value)
AWS_APPMESH_API Aws::String SerializePayload() const override
DescribeMeshRequest & WithMeshName(Aws::String &&value)
DescribeMeshRequest & WithMeshOwner(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String