AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetComponentRequest.h
1
6#pragma once
7#include <aws/amplifyuibuilder/AmplifyUIBuilder_EXPORTS.h>
8#include <aws/amplifyuibuilder/AmplifyUIBuilderRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace AmplifyUIBuilder
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_AMPLIFYUIBUILDER_API GetComponentRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetComponent"; }
31
32 AWS_AMPLIFYUIBUILDER_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetAppId() const{ return m_appId; }
40 inline bool AppIdHasBeenSet() const { return m_appIdHasBeenSet; }
41 inline void SetAppId(const Aws::String& value) { m_appIdHasBeenSet = true; m_appId = value; }
42 inline void SetAppId(Aws::String&& value) { m_appIdHasBeenSet = true; m_appId = std::move(value); }
43 inline void SetAppId(const char* value) { m_appIdHasBeenSet = true; m_appId.assign(value); }
44 inline GetComponentRequest& WithAppId(const Aws::String& value) { SetAppId(value); return *this;}
45 inline GetComponentRequest& WithAppId(Aws::String&& value) { SetAppId(std::move(value)); return *this;}
46 inline GetComponentRequest& WithAppId(const char* value) { SetAppId(value); return *this;}
48
50
53 inline const Aws::String& GetEnvironmentName() const{ return m_environmentName; }
54 inline bool EnvironmentNameHasBeenSet() const { return m_environmentNameHasBeenSet; }
55 inline void SetEnvironmentName(const Aws::String& value) { m_environmentNameHasBeenSet = true; m_environmentName = value; }
56 inline void SetEnvironmentName(Aws::String&& value) { m_environmentNameHasBeenSet = true; m_environmentName = std::move(value); }
57 inline void SetEnvironmentName(const char* value) { m_environmentNameHasBeenSet = true; m_environmentName.assign(value); }
58 inline GetComponentRequest& WithEnvironmentName(const Aws::String& value) { SetEnvironmentName(value); return *this;}
59 inline GetComponentRequest& WithEnvironmentName(Aws::String&& value) { SetEnvironmentName(std::move(value)); return *this;}
60 inline GetComponentRequest& WithEnvironmentName(const char* value) { SetEnvironmentName(value); return *this;}
62
64
67 inline const Aws::String& GetId() const{ return m_id; }
68 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
69 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
70 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
71 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
72 inline GetComponentRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
73 inline GetComponentRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
74 inline GetComponentRequest& WithId(const char* value) { SetId(value); return *this;}
76 private:
77
78 Aws::String m_appId;
79 bool m_appIdHasBeenSet = false;
80
81 Aws::String m_environmentName;
82 bool m_environmentNameHasBeenSet = false;
83
84 Aws::String m_id;
85 bool m_idHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace AmplifyUIBuilder
90} // namespace Aws
virtual const char * GetServiceRequestName() const override
GetComponentRequest & WithId(Aws::String &&value)
GetComponentRequest & WithEnvironmentName(const char *value)
GetComponentRequest & WithEnvironmentName(Aws::String &&value)
GetComponentRequest & WithAppId(const char *value)
GetComponentRequest & WithAppId(const Aws::String &value)
GetComponentRequest & WithId(const char *value)
GetComponentRequest & WithId(const Aws::String &value)
AWS_AMPLIFYUIBUILDER_API Aws::String SerializePayload() const override
GetComponentRequest & WithAppId(Aws::String &&value)
GetComponentRequest & WithEnvironmentName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String