AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetConfiguredTableAnalysisRuleRequest.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/cleanrooms/CleanRoomsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/cleanrooms/model/ConfiguredTableAnalysisRuleType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CleanRooms
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CLEANROOMS_API GetConfiguredTableAnalysisRuleRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "GetConfiguredTableAnalysisRule"; }
32
33 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetConfiguredTableIdentifier() const { return m_configuredTableIdentifier; }
42 inline bool ConfiguredTableIdentifierHasBeenSet() const { return m_configuredTableIdentifierHasBeenSet; }
43 template<typename ConfiguredTableIdentifierT = Aws::String>
44 void SetConfiguredTableIdentifier(ConfiguredTableIdentifierT&& value) { m_configuredTableIdentifierHasBeenSet = true; m_configuredTableIdentifier = std::forward<ConfiguredTableIdentifierT>(value); }
45 template<typename ConfiguredTableIdentifierT = Aws::String>
46 GetConfiguredTableAnalysisRuleRequest& WithConfiguredTableIdentifier(ConfiguredTableIdentifierT&& value) { SetConfiguredTableIdentifier(std::forward<ConfiguredTableIdentifierT>(value)); return *this;}
48
50
55 inline ConfiguredTableAnalysisRuleType GetAnalysisRuleType() const { return m_analysisRuleType; }
56 inline bool AnalysisRuleTypeHasBeenSet() const { return m_analysisRuleTypeHasBeenSet; }
57 inline void SetAnalysisRuleType(ConfiguredTableAnalysisRuleType value) { m_analysisRuleTypeHasBeenSet = true; m_analysisRuleType = value; }
60 private:
61
62 Aws::String m_configuredTableIdentifier;
63 bool m_configuredTableIdentifierHasBeenSet = false;
64
66 bool m_analysisRuleTypeHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace CleanRooms
71} // namespace Aws
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
GetConfiguredTableAnalysisRuleRequest & WithConfiguredTableIdentifier(ConfiguredTableIdentifierT &&value)
GetConfiguredTableAnalysisRuleRequest & WithAnalysisRuleType(ConfiguredTableAnalysisRuleType value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String