AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchPutFieldOptionsRequest.h
1
6#pragma once
7#include <aws/connectcases/ConnectCases_EXPORTS.h>
8#include <aws/connectcases/ConnectCasesRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/connectcases/model/FieldOption.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ConnectCases
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CONNECTCASES_API BatchPutFieldOptionsRequest();
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 "BatchPutFieldOptions"; }
33
34 AWS_CONNECTCASES_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetDomainId() const{ return m_domainId; }
42 inline bool DomainIdHasBeenSet() const { return m_domainIdHasBeenSet; }
43 inline void SetDomainId(const Aws::String& value) { m_domainIdHasBeenSet = true; m_domainId = value; }
44 inline void SetDomainId(Aws::String&& value) { m_domainIdHasBeenSet = true; m_domainId = std::move(value); }
45 inline void SetDomainId(const char* value) { m_domainIdHasBeenSet = true; m_domainId.assign(value); }
46 inline BatchPutFieldOptionsRequest& WithDomainId(const Aws::String& value) { SetDomainId(value); return *this;}
47 inline BatchPutFieldOptionsRequest& WithDomainId(Aws::String&& value) { SetDomainId(std::move(value)); return *this;}
48 inline BatchPutFieldOptionsRequest& WithDomainId(const char* value) { SetDomainId(value); return *this;}
50
52
55 inline const Aws::String& GetFieldId() const{ return m_fieldId; }
56 inline bool FieldIdHasBeenSet() const { return m_fieldIdHasBeenSet; }
57 inline void SetFieldId(const Aws::String& value) { m_fieldIdHasBeenSet = true; m_fieldId = value; }
58 inline void SetFieldId(Aws::String&& value) { m_fieldIdHasBeenSet = true; m_fieldId = std::move(value); }
59 inline void SetFieldId(const char* value) { m_fieldIdHasBeenSet = true; m_fieldId.assign(value); }
60 inline BatchPutFieldOptionsRequest& WithFieldId(const Aws::String& value) { SetFieldId(value); return *this;}
61 inline BatchPutFieldOptionsRequest& WithFieldId(Aws::String&& value) { SetFieldId(std::move(value)); return *this;}
62 inline BatchPutFieldOptionsRequest& WithFieldId(const char* value) { SetFieldId(value); return *this;}
64
66
69 inline const Aws::Vector<FieldOption>& GetOptions() const{ return m_options; }
70 inline bool OptionsHasBeenSet() const { return m_optionsHasBeenSet; }
71 inline void SetOptions(const Aws::Vector<FieldOption>& value) { m_optionsHasBeenSet = true; m_options = value; }
72 inline void SetOptions(Aws::Vector<FieldOption>&& value) { m_optionsHasBeenSet = true; m_options = std::move(value); }
73 inline BatchPutFieldOptionsRequest& WithOptions(const Aws::Vector<FieldOption>& value) { SetOptions(value); return *this;}
74 inline BatchPutFieldOptionsRequest& WithOptions(Aws::Vector<FieldOption>&& value) { SetOptions(std::move(value)); return *this;}
75 inline BatchPutFieldOptionsRequest& AddOptions(const FieldOption& value) { m_optionsHasBeenSet = true; m_options.push_back(value); return *this; }
76 inline BatchPutFieldOptionsRequest& AddOptions(FieldOption&& value) { m_optionsHasBeenSet = true; m_options.push_back(std::move(value)); return *this; }
78 private:
79
80 Aws::String m_domainId;
81 bool m_domainIdHasBeenSet = false;
82
83 Aws::String m_fieldId;
84 bool m_fieldIdHasBeenSet = false;
85
87 bool m_optionsHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace ConnectCases
92} // namespace Aws
BatchPutFieldOptionsRequest & WithDomainId(const char *value)
BatchPutFieldOptionsRequest & WithFieldId(const Aws::String &value)
BatchPutFieldOptionsRequest & WithDomainId(const Aws::String &value)
void SetOptions(const Aws::Vector< FieldOption > &value)
AWS_CONNECTCASES_API Aws::String SerializePayload() const override
BatchPutFieldOptionsRequest & AddOptions(FieldOption &&value)
BatchPutFieldOptionsRequest & AddOptions(const FieldOption &value)
BatchPutFieldOptionsRequest & WithFieldId(const char *value)
BatchPutFieldOptionsRequest & WithOptions(Aws::Vector< FieldOption > &&value)
BatchPutFieldOptionsRequest & WithOptions(const Aws::Vector< FieldOption > &value)
BatchPutFieldOptionsRequest & WithFieldId(Aws::String &&value)
BatchPutFieldOptionsRequest & WithDomainId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector