AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteConfiguredTableAnalysisRuleRequest.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:
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 "DeleteConfiguredTableAnalysisRule"; }
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 inline void SetConfiguredTableIdentifier(const Aws::String& value) { m_configuredTableIdentifierHasBeenSet = true; m_configuredTableIdentifier = value; }
44 inline void SetConfiguredTableIdentifier(Aws::String&& value) { m_configuredTableIdentifierHasBeenSet = true; m_configuredTableIdentifier = std::move(value); }
45 inline void SetConfiguredTableIdentifier(const char* value) { m_configuredTableIdentifierHasBeenSet = true; m_configuredTableIdentifier.assign(value); }
50
52
57 inline const ConfiguredTableAnalysisRuleType& GetAnalysisRuleType() const{ return m_analysisRuleType; }
58 inline bool AnalysisRuleTypeHasBeenSet() const { return m_analysisRuleTypeHasBeenSet; }
59 inline void SetAnalysisRuleType(const ConfiguredTableAnalysisRuleType& value) { m_analysisRuleTypeHasBeenSet = true; m_analysisRuleType = value; }
60 inline void SetAnalysisRuleType(ConfiguredTableAnalysisRuleType&& value) { m_analysisRuleTypeHasBeenSet = true; m_analysisRuleType = std::move(value); }
64 private:
65
66 Aws::String m_configuredTableIdentifier;
67 bool m_configuredTableIdentifierHasBeenSet = false;
68
69 ConfiguredTableAnalysisRuleType m_analysisRuleType;
70 bool m_analysisRuleTypeHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace CleanRooms
75} // namespace Aws
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
DeleteConfiguredTableAnalysisRuleRequest & WithConfiguredTableIdentifier(Aws::String &&value)
DeleteConfiguredTableAnalysisRuleRequest & WithConfiguredTableIdentifier(const char *value)
DeleteConfiguredTableAnalysisRuleRequest & WithConfiguredTableIdentifier(const Aws::String &value)
DeleteConfiguredTableAnalysisRuleRequest & WithAnalysisRuleType(ConfiguredTableAnalysisRuleType &&value)
DeleteConfiguredTableAnalysisRuleRequest & WithAnalysisRuleType(const ConfiguredTableAnalysisRuleType &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String