AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetDataAutomationProjectRequest.h
1
6#pragma once
7#include <aws/bedrock-data-automation/BedrockDataAutomation_EXPORTS.h>
8#include <aws/bedrock-data-automation/BedrockDataAutomationRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/bedrock-data-automation/model/DataAutomationProjectStage.h>
11#include <utility>
12
13namespace Aws
14{
15namespace BedrockDataAutomation
16{
17namespace Model
18{
19
26 {
27 public:
28 AWS_BEDROCKDATAAUTOMATION_API GetDataAutomationProjectRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "GetDataAutomationProject"; }
35
36 AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override;
37
38
40
43 inline const Aws::String& GetProjectArn() const { return m_projectArn; }
44 inline bool ProjectArnHasBeenSet() const { return m_projectArnHasBeenSet; }
45 template<typename ProjectArnT = Aws::String>
46 void SetProjectArn(ProjectArnT&& value) { m_projectArnHasBeenSet = true; m_projectArn = std::forward<ProjectArnT>(value); }
47 template<typename ProjectArnT = Aws::String>
48 GetDataAutomationProjectRequest& WithProjectArn(ProjectArnT&& value) { SetProjectArn(std::forward<ProjectArnT>(value)); return *this;}
50
52
55 inline DataAutomationProjectStage GetProjectStage() const { return m_projectStage; }
56 inline bool ProjectStageHasBeenSet() const { return m_projectStageHasBeenSet; }
57 inline void SetProjectStage(DataAutomationProjectStage value) { m_projectStageHasBeenSet = true; m_projectStage = value; }
60 private:
61
62 Aws::String m_projectArn;
63 bool m_projectArnHasBeenSet = false;
64
66 bool m_projectStageHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace BedrockDataAutomation
71} // namespace Aws
AWS_BEDROCKDATAAUTOMATION_API GetDataAutomationProjectRequest()=default
GetDataAutomationProjectRequest & WithProjectStage(DataAutomationProjectStage value)
AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override
GetDataAutomationProjectRequest & WithProjectArn(ProjectArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String