AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchGetSchemaRequest.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 <utility>
12
13namespace Aws
14{
15namespace CleanRooms
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CLEANROOMS_API BatchGetSchemaRequest();
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 "BatchGetSchema"; }
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); }
48 inline BatchGetSchemaRequest& WithCollaborationIdentifier(const char* value) { SetCollaborationIdentifier(value); return *this;}
50
52
55 inline const Aws::Vector<Aws::String>& GetNames() const{ return m_names; }
56 inline bool NamesHasBeenSet() const { return m_namesHasBeenSet; }
57 inline void SetNames(const Aws::Vector<Aws::String>& value) { m_namesHasBeenSet = true; m_names = value; }
58 inline void SetNames(Aws::Vector<Aws::String>&& value) { m_namesHasBeenSet = true; m_names = std::move(value); }
59 inline BatchGetSchemaRequest& WithNames(const Aws::Vector<Aws::String>& value) { SetNames(value); return *this;}
60 inline BatchGetSchemaRequest& WithNames(Aws::Vector<Aws::String>&& value) { SetNames(std::move(value)); return *this;}
61 inline BatchGetSchemaRequest& AddNames(const Aws::String& value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; }
62 inline BatchGetSchemaRequest& AddNames(Aws::String&& value) { m_namesHasBeenSet = true; m_names.push_back(std::move(value)); return *this; }
63 inline BatchGetSchemaRequest& AddNames(const char* value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; }
65 private:
66
67 Aws::String m_collaborationIdentifier;
68 bool m_collaborationIdentifierHasBeenSet = false;
69
71 bool m_namesHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace CleanRooms
76} // namespace Aws
virtual const char * GetServiceRequestName() const override
BatchGetSchemaRequest & WithNames(const Aws::Vector< Aws::String > &value)
BatchGetSchemaRequest & WithNames(Aws::Vector< Aws::String > &&value)
BatchGetSchemaRequest & AddNames(Aws::String &&value)
BatchGetSchemaRequest & AddNames(const char *value)
BatchGetSchemaRequest & WithCollaborationIdentifier(const Aws::String &value)
const Aws::Vector< Aws::String > & GetNames() const
BatchGetSchemaRequest & AddNames(const Aws::String &value)
void SetNames(const Aws::Vector< Aws::String > &value)
BatchGetSchemaRequest & WithCollaborationIdentifier(Aws::String &&value)
void SetNames(Aws::Vector< Aws::String > &&value)
BatchGetSchemaRequest & WithCollaborationIdentifier(const char *value)
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
void SetCollaborationIdentifier(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector