AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
BatchGetSchemaAnalysisRuleRequest.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/core/utils/memory/stl/AWSVector.h>
11#include <aws/cleanrooms/model/SchemaAnalysisRuleRequest.h>
12#include <utility>
13
14namespace Aws
15{
16namespace CleanRooms
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CLEANROOMS_API BatchGetSchemaAnalysisRuleRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "BatchGetSchemaAnalysisRule"; }
33
34 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
35
36
38
42 inline const Aws::String& GetCollaborationIdentifier() const { return m_collaborationIdentifier; }
43 inline bool CollaborationIdentifierHasBeenSet() const { return m_collaborationIdentifierHasBeenSet; }
44 template<typename CollaborationIdentifierT = Aws::String>
45 void SetCollaborationIdentifier(CollaborationIdentifierT&& value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier = std::forward<CollaborationIdentifierT>(value); }
46 template<typename CollaborationIdentifierT = Aws::String>
47 BatchGetSchemaAnalysisRuleRequest& WithCollaborationIdentifier(CollaborationIdentifierT&& value) { SetCollaborationIdentifier(std::forward<CollaborationIdentifierT>(value)); return *this;}
49
51
54 inline const Aws::Vector<SchemaAnalysisRuleRequest>& GetSchemaAnalysisRuleRequests() const { return m_schemaAnalysisRuleRequests; }
55 inline bool SchemaAnalysisRuleRequestsHasBeenSet() const { return m_schemaAnalysisRuleRequestsHasBeenSet; }
56 template<typename SchemaAnalysisRuleRequestsT = Aws::Vector<SchemaAnalysisRuleRequest>>
57 void SetSchemaAnalysisRuleRequests(SchemaAnalysisRuleRequestsT&& value) { m_schemaAnalysisRuleRequestsHasBeenSet = true; m_schemaAnalysisRuleRequests = std::forward<SchemaAnalysisRuleRequestsT>(value); }
58 template<typename SchemaAnalysisRuleRequestsT = Aws::Vector<SchemaAnalysisRuleRequest>>
59 BatchGetSchemaAnalysisRuleRequest& WithSchemaAnalysisRuleRequests(SchemaAnalysisRuleRequestsT&& value) { SetSchemaAnalysisRuleRequests(std::forward<SchemaAnalysisRuleRequestsT>(value)); return *this;}
60 template<typename SchemaAnalysisRuleRequestsT = SchemaAnalysisRuleRequest>
61 BatchGetSchemaAnalysisRuleRequest& AddSchemaAnalysisRuleRequests(SchemaAnalysisRuleRequestsT&& value) { m_schemaAnalysisRuleRequestsHasBeenSet = true; m_schemaAnalysisRuleRequests.emplace_back(std::forward<SchemaAnalysisRuleRequestsT>(value)); return *this; }
63 private:
64
65 Aws::String m_collaborationIdentifier;
66 bool m_collaborationIdentifierHasBeenSet = false;
67
68 Aws::Vector<SchemaAnalysisRuleRequest> m_schemaAnalysisRuleRequests;
69 bool m_schemaAnalysisRuleRequestsHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace CleanRooms
74} // namespace Aws
BatchGetSchemaAnalysisRuleRequest & WithCollaborationIdentifier(CollaborationIdentifierT &&value)
AWS_CLEANROOMS_API BatchGetSchemaAnalysisRuleRequest()=default
BatchGetSchemaAnalysisRuleRequest & AddSchemaAnalysisRuleRequests(SchemaAnalysisRuleRequestsT &&value)
const Aws::Vector< SchemaAnalysisRuleRequest > & GetSchemaAnalysisRuleRequests() const
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
BatchGetSchemaAnalysisRuleRequest & WithSchemaAnalysisRuleRequests(SchemaAnalysisRuleRequestsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector