AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchGetUserAccessTasksRequest.h
1
6#pragma once
7#include <aws/appfabric/AppFabric_EXPORTS.h>
8#include <aws/appfabric/AppFabricRequest.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 AppFabric
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_APPFABRIC_API BatchGetUserAccessTasksRequest();
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 "BatchGetUserAccessTasks"; }
32
33 AWS_APPFABRIC_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetAppBundleIdentifier() const{ return m_appBundleIdentifier; }
42 inline bool AppBundleIdentifierHasBeenSet() const { return m_appBundleIdentifierHasBeenSet; }
43 inline void SetAppBundleIdentifier(const Aws::String& value) { m_appBundleIdentifierHasBeenSet = true; m_appBundleIdentifier = value; }
44 inline void SetAppBundleIdentifier(Aws::String&& value) { m_appBundleIdentifierHasBeenSet = true; m_appBundleIdentifier = std::move(value); }
45 inline void SetAppBundleIdentifier(const char* value) { m_appBundleIdentifierHasBeenSet = true; m_appBundleIdentifier.assign(value); }
48 inline BatchGetUserAccessTasksRequest& WithAppBundleIdentifier(const char* value) { SetAppBundleIdentifier(value); return *this;}
50
52
55 inline const Aws::Vector<Aws::String>& GetTaskIdList() const{ return m_taskIdList; }
56 inline bool TaskIdListHasBeenSet() const { return m_taskIdListHasBeenSet; }
57 inline void SetTaskIdList(const Aws::Vector<Aws::String>& value) { m_taskIdListHasBeenSet = true; m_taskIdList = value; }
58 inline void SetTaskIdList(Aws::Vector<Aws::String>&& value) { m_taskIdListHasBeenSet = true; m_taskIdList = std::move(value); }
60 inline BatchGetUserAccessTasksRequest& WithTaskIdList(Aws::Vector<Aws::String>&& value) { SetTaskIdList(std::move(value)); return *this;}
61 inline BatchGetUserAccessTasksRequest& AddTaskIdList(const Aws::String& value) { m_taskIdListHasBeenSet = true; m_taskIdList.push_back(value); return *this; }
62 inline BatchGetUserAccessTasksRequest& AddTaskIdList(Aws::String&& value) { m_taskIdListHasBeenSet = true; m_taskIdList.push_back(std::move(value)); return *this; }
63 inline BatchGetUserAccessTasksRequest& AddTaskIdList(const char* value) { m_taskIdListHasBeenSet = true; m_taskIdList.push_back(value); return *this; }
65 private:
66
67 Aws::String m_appBundleIdentifier;
68 bool m_appBundleIdentifierHasBeenSet = false;
69
70 Aws::Vector<Aws::String> m_taskIdList;
71 bool m_taskIdListHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace AppFabric
76} // namespace Aws
BatchGetUserAccessTasksRequest & WithTaskIdList(Aws::Vector< Aws::String > &&value)
BatchGetUserAccessTasksRequest & AddTaskIdList(const char *value)
BatchGetUserAccessTasksRequest & WithAppBundleIdentifier(const Aws::String &value)
BatchGetUserAccessTasksRequest & WithAppBundleIdentifier(Aws::String &&value)
AWS_APPFABRIC_API Aws::String SerializePayload() const override
BatchGetUserAccessTasksRequest & WithAppBundleIdentifier(const char *value)
BatchGetUserAccessTasksRequest & AddTaskIdList(const Aws::String &value)
BatchGetUserAccessTasksRequest & AddTaskIdList(Aws::String &&value)
BatchGetUserAccessTasksRequest & WithTaskIdList(const Aws::Vector< Aws::String > &value)
void SetTaskIdList(const Aws::Vector< Aws::String > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector