AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListBlueprintsRequest.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/ResourceOwner.h>
11#include <aws/bedrock-data-automation/model/BlueprintStageFilter.h>
12#include <aws/bedrock-data-automation/model/DataAutomationProjectFilter.h>
13#include <utility>
14
15namespace Aws
16{
17namespace BedrockDataAutomation
18{
19namespace Model
20{
21
28 {
29 public:
30 AWS_BEDROCKDATAAUTOMATION_API ListBlueprintsRequest() = default;
31
32 // Service request name is the Operation name which will send this request out,
33 // each operation should has unique request name, so that we can get operation's name from this request.
34 // Note: this is not true for response, multiple operations may have the same response name,
35 // so we can not get operation's name from response.
36 inline virtual const char* GetServiceRequestName() const override { return "ListBlueprints"; }
37
38 AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override;
39
40
42
43 inline const Aws::String& GetBlueprintArn() const { return m_blueprintArn; }
44 inline bool BlueprintArnHasBeenSet() const { return m_blueprintArnHasBeenSet; }
45 template<typename BlueprintArnT = Aws::String>
46 void SetBlueprintArn(BlueprintArnT&& value) { m_blueprintArnHasBeenSet = true; m_blueprintArn = std::forward<BlueprintArnT>(value); }
47 template<typename BlueprintArnT = Aws::String>
48 ListBlueprintsRequest& WithBlueprintArn(BlueprintArnT&& value) { SetBlueprintArn(std::forward<BlueprintArnT>(value)); return *this;}
50
52
53 inline ResourceOwner GetResourceOwner() const { return m_resourceOwner; }
54 inline bool ResourceOwnerHasBeenSet() const { return m_resourceOwnerHasBeenSet; }
55 inline void SetResourceOwner(ResourceOwner value) { m_resourceOwnerHasBeenSet = true; m_resourceOwner = value; }
58
60
61 inline BlueprintStageFilter GetBlueprintStageFilter() const { return m_blueprintStageFilter; }
62 inline bool BlueprintStageFilterHasBeenSet() const { return m_blueprintStageFilterHasBeenSet; }
63 inline void SetBlueprintStageFilter(BlueprintStageFilter value) { m_blueprintStageFilterHasBeenSet = true; m_blueprintStageFilter = value; }
66
68
69 inline int GetMaxResults() const { return m_maxResults; }
70 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
71 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
72 inline ListBlueprintsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
74
76
77 inline const Aws::String& GetNextToken() const { return m_nextToken; }
78 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
79 template<typename NextTokenT = Aws::String>
80 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
81 template<typename NextTokenT = Aws::String>
82 ListBlueprintsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
84
86
87 inline const DataAutomationProjectFilter& GetProjectFilter() const { return m_projectFilter; }
88 inline bool ProjectFilterHasBeenSet() const { return m_projectFilterHasBeenSet; }
89 template<typename ProjectFilterT = DataAutomationProjectFilter>
90 void SetProjectFilter(ProjectFilterT&& value) { m_projectFilterHasBeenSet = true; m_projectFilter = std::forward<ProjectFilterT>(value); }
91 template<typename ProjectFilterT = DataAutomationProjectFilter>
92 ListBlueprintsRequest& WithProjectFilter(ProjectFilterT&& value) { SetProjectFilter(std::forward<ProjectFilterT>(value)); return *this;}
94 private:
95
96 Aws::String m_blueprintArn;
97 bool m_blueprintArnHasBeenSet = false;
98
100 bool m_resourceOwnerHasBeenSet = false;
101
103 bool m_blueprintStageFilterHasBeenSet = false;
104
105 int m_maxResults{0};
106 bool m_maxResultsHasBeenSet = false;
107
108 Aws::String m_nextToken;
109 bool m_nextTokenHasBeenSet = false;
110
111 DataAutomationProjectFilter m_projectFilter;
112 bool m_projectFilterHasBeenSet = false;
113 };
114
115} // namespace Model
116} // namespace BedrockDataAutomation
117} // namespace Aws
ListBlueprintsRequest & WithBlueprintArn(BlueprintArnT &&value)
AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override
AWS_BEDROCKDATAAUTOMATION_API ListBlueprintsRequest()=default
ListBlueprintsRequest & WithBlueprintStageFilter(BlueprintStageFilter value)
ListBlueprintsRequest & WithNextToken(NextTokenT &&value)
ListBlueprintsRequest & WithResourceOwner(ResourceOwner value)
const DataAutomationProjectFilter & GetProjectFilter() const
ListBlueprintsRequest & WithProjectFilter(ProjectFilterT &&value)
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String