AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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() = 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 "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 template<typename CollaborationIdentifierT = Aws::String>
44 void SetCollaborationIdentifier(CollaborationIdentifierT&& value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier = std::forward<CollaborationIdentifierT>(value); }
45 template<typename CollaborationIdentifierT = Aws::String>
46 GetSchemaAnalysisRuleRequest& WithCollaborationIdentifier(CollaborationIdentifierT&& value) { SetCollaborationIdentifier(std::forward<CollaborationIdentifierT>(value)); return *this;}
48
50
53 inline const Aws::String& GetName() const { return m_name; }
54 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
55 template<typename NameT = Aws::String>
56 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
57 template<typename NameT = Aws::String>
58 GetSchemaAnalysisRuleRequest& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
60
62
67 inline AnalysisRuleType GetType() const { return m_type; }
68 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
69 inline void SetType(AnalysisRuleType value) { m_typeHasBeenSet = true; m_type = value; }
70 inline GetSchemaAnalysisRuleRequest& WithType(AnalysisRuleType value) { SetType(value); return *this;}
72 private:
73
74 Aws::String m_collaborationIdentifier;
75 bool m_collaborationIdentifierHasBeenSet = false;
76
77 Aws::String m_name;
78 bool m_nameHasBeenSet = false;
79
81 bool m_typeHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace CleanRooms
86} // namespace Aws
AWS_CLEANROOMS_API GetSchemaAnalysisRuleRequest()=default
GetSchemaAnalysisRuleRequest & WithCollaborationIdentifier(CollaborationIdentifierT &&value)
GetSchemaAnalysisRuleRequest & WithName(NameT &&value)
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
void SetCollaborationIdentifier(CollaborationIdentifierT &&value)
GetSchemaAnalysisRuleRequest & WithType(AnalysisRuleType value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String