AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
BatchGetCaseRuleRequest.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/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/connectcases/model/CaseRuleIdentifier.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ConnectCases
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CONNECTCASES_API BatchGetCaseRuleRequest() = 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 "BatchGetCaseRule"; }
33
34 AWS_CONNECTCASES_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::Vector<CaseRuleIdentifier>& GetCaseRules() const { return m_caseRules; }
42 inline bool CaseRulesHasBeenSet() const { return m_caseRulesHasBeenSet; }
43 template<typename CaseRulesT = Aws::Vector<CaseRuleIdentifier>>
44 void SetCaseRules(CaseRulesT&& value) { m_caseRulesHasBeenSet = true; m_caseRules = std::forward<CaseRulesT>(value); }
45 template<typename CaseRulesT = Aws::Vector<CaseRuleIdentifier>>
46 BatchGetCaseRuleRequest& WithCaseRules(CaseRulesT&& value) { SetCaseRules(std::forward<CaseRulesT>(value)); return *this;}
47 template<typename CaseRulesT = CaseRuleIdentifier>
48 BatchGetCaseRuleRequest& AddCaseRules(CaseRulesT&& value) { m_caseRulesHasBeenSet = true; m_caseRules.emplace_back(std::forward<CaseRulesT>(value)); return *this; }
50
52
55 inline const Aws::String& GetDomainId() const { return m_domainId; }
56 inline bool DomainIdHasBeenSet() const { return m_domainIdHasBeenSet; }
57 template<typename DomainIdT = Aws::String>
58 void SetDomainId(DomainIdT&& value) { m_domainIdHasBeenSet = true; m_domainId = std::forward<DomainIdT>(value); }
59 template<typename DomainIdT = Aws::String>
60 BatchGetCaseRuleRequest& WithDomainId(DomainIdT&& value) { SetDomainId(std::forward<DomainIdT>(value)); return *this;}
62 private:
63
65 bool m_caseRulesHasBeenSet = false;
66
67 Aws::String m_domainId;
68 bool m_domainIdHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace ConnectCases
73} // namespace Aws
BatchGetCaseRuleRequest & WithCaseRules(CaseRulesT &&value)
virtual const char * GetServiceRequestName() const override
AWS_CONNECTCASES_API BatchGetCaseRuleRequest()=default
AWS_CONNECTCASES_API Aws::String SerializePayload() const override
BatchGetCaseRuleRequest & WithDomainId(DomainIdT &&value)
BatchGetCaseRuleRequest & AddCaseRules(CaseRulesT &&value)
const Aws::Vector< CaseRuleIdentifier > & GetCaseRules() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector