AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetSchemaAnalysisRuleRequest.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/AnalysisRuleType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CleanRooms
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CLEANROOMS_API GetSchemaAnalysisRuleRequest();
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 "GetSchemaAnalysisRule"; }
32
33 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetCollaborationIdentifier() const{ return m_collaborationIdentifier; }
42 inline bool CollaborationIdentifierHasBeenSet() const { return m_collaborationIdentifierHasBeenSet; }
43 inline void SetCollaborationIdentifier(const Aws::String& value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier = value; }
44 inline void SetCollaborationIdentifier(Aws::String&& value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier = std::move(value); }
45 inline void SetCollaborationIdentifier(const char* value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier.assign(value); }
50
52
55 inline const Aws::String& GetName() const{ return m_name; }
56 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
57 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
58 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
59 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
60 inline GetSchemaAnalysisRuleRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
61 inline GetSchemaAnalysisRuleRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
62 inline GetSchemaAnalysisRuleRequest& WithName(const char* value) { SetName(value); return *this;}
64
66
71 inline const AnalysisRuleType& GetType() const{ return m_type; }
72 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
73 inline void SetType(const AnalysisRuleType& value) { m_typeHasBeenSet = true; m_type = value; }
74 inline void SetType(AnalysisRuleType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
75 inline GetSchemaAnalysisRuleRequest& WithType(const AnalysisRuleType& value) { SetType(value); return *this;}
76 inline GetSchemaAnalysisRuleRequest& WithType(AnalysisRuleType&& value) { SetType(std::move(value)); return *this;}
78 private:
79
80 Aws::String m_collaborationIdentifier;
81 bool m_collaborationIdentifierHasBeenSet = false;
82
83 Aws::String m_name;
84 bool m_nameHasBeenSet = false;
85
86 AnalysisRuleType m_type;
87 bool m_typeHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace CleanRooms
92} // namespace Aws
GetSchemaAnalysisRuleRequest & WithName(Aws::String &&value)
GetSchemaAnalysisRuleRequest & WithName(const char *value)
GetSchemaAnalysisRuleRequest & WithCollaborationIdentifier(const Aws::String &value)
GetSchemaAnalysisRuleRequest & WithType(const AnalysisRuleType &value)
GetSchemaAnalysisRuleRequest & WithCollaborationIdentifier(const char *value)
GetSchemaAnalysisRuleRequest & WithCollaborationIdentifier(Aws::String &&value)
GetSchemaAnalysisRuleRequest & WithName(const Aws::String &value)
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
GetSchemaAnalysisRuleRequest & WithType(AnalysisRuleType &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String