AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
UpdateTestGridProjectRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/devicefarm/DeviceFarmRequest.h>
9#include <aws/devicefarm/DeviceFarm_EXPORTS.h>
10#include <aws/devicefarm/model/TestGridVpcConfig.h>
11
12#include <utility>
13
14namespace Aws {
15namespace DeviceFarm {
16namespace Model {
17
21 public:
22 AWS_DEVICEFARM_API UpdateTestGridProjectRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "UpdateTestGridProject"; }
29
30 AWS_DEVICEFARM_API Aws::String SerializePayload() const override;
31
33
35
38 inline const Aws::String& GetProjectArn() const { return m_projectArn; }
39 inline bool ProjectArnHasBeenSet() const { return m_projectArnHasBeenSet; }
40 template <typename ProjectArnT = Aws::String>
41 void SetProjectArn(ProjectArnT&& value) {
42 m_projectArnHasBeenSet = true;
43 m_projectArn = std::forward<ProjectArnT>(value);
44 }
45 template <typename ProjectArnT = Aws::String>
47 SetProjectArn(std::forward<ProjectArnT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetName() const { return m_name; }
57 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
58 template <typename NameT = Aws::String>
59 void SetName(NameT&& value) {
60 m_nameHasBeenSet = true;
61 m_name = std::forward<NameT>(value);
62 }
63 template <typename NameT = Aws::String>
65 SetName(std::forward<NameT>(value));
66 return *this;
67 }
69
71
74 inline const Aws::String& GetDescription() const { return m_description; }
75 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
76 template <typename DescriptionT = Aws::String>
77 void SetDescription(DescriptionT&& value) {
78 m_descriptionHasBeenSet = true;
79 m_description = std::forward<DescriptionT>(value);
80 }
81 template <typename DescriptionT = Aws::String>
83 SetDescription(std::forward<DescriptionT>(value));
84 return *this;
85 }
87
89
92 inline const TestGridVpcConfig& GetVpcConfig() const { return m_vpcConfig; }
93 inline bool VpcConfigHasBeenSet() const { return m_vpcConfigHasBeenSet; }
94 template <typename VpcConfigT = TestGridVpcConfig>
95 void SetVpcConfig(VpcConfigT&& value) {
96 m_vpcConfigHasBeenSet = true;
97 m_vpcConfig = std::forward<VpcConfigT>(value);
98 }
99 template <typename VpcConfigT = TestGridVpcConfig>
101 SetVpcConfig(std::forward<VpcConfigT>(value));
102 return *this;
103 }
105 private:
106 Aws::String m_projectArn;
107
108 Aws::String m_name;
109
110 Aws::String m_description;
111
112 TestGridVpcConfig m_vpcConfig;
113 bool m_projectArnHasBeenSet = false;
114 bool m_nameHasBeenSet = false;
115 bool m_descriptionHasBeenSet = false;
116 bool m_vpcConfigHasBeenSet = false;
117};
118
119} // namespace Model
120} // namespace DeviceFarm
121} // namespace Aws
UpdateTestGridProjectRequest & WithProjectArn(ProjectArnT &&value)
UpdateTestGridProjectRequest & WithVpcConfig(VpcConfigT &&value)
AWS_DEVICEFARM_API Aws::String SerializePayload() const override
AWS_DEVICEFARM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_DEVICEFARM_API UpdateTestGridProjectRequest()=default
UpdateTestGridProjectRequest & WithDescription(DescriptionT &&value)
UpdateTestGridProjectRequest & WithName(NameT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String