AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ResolveCaseRequest.h
1
6#pragma once
7#include <aws/support/Support_EXPORTS.h>
8#include <aws/support/SupportRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Support
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_SUPPORT_API ResolveCaseRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "ResolveCase"; }
31
32 AWS_SUPPORT_API Aws::String SerializePayload() const override;
33
35
36
38
43 inline const Aws::String& GetCaseId() const{ return m_caseId; }
44 inline bool CaseIdHasBeenSet() const { return m_caseIdHasBeenSet; }
45 inline void SetCaseId(const Aws::String& value) { m_caseIdHasBeenSet = true; m_caseId = value; }
46 inline void SetCaseId(Aws::String&& value) { m_caseIdHasBeenSet = true; m_caseId = std::move(value); }
47 inline void SetCaseId(const char* value) { m_caseIdHasBeenSet = true; m_caseId.assign(value); }
48 inline ResolveCaseRequest& WithCaseId(const Aws::String& value) { SetCaseId(value); return *this;}
49 inline ResolveCaseRequest& WithCaseId(Aws::String&& value) { SetCaseId(std::move(value)); return *this;}
50 inline ResolveCaseRequest& WithCaseId(const char* value) { SetCaseId(value); return *this;}
52 private:
53
54 Aws::String m_caseId;
55 bool m_caseIdHasBeenSet = false;
56 };
57
58} // namespace Model
59} // namespace Support
60} // namespace Aws
ResolveCaseRequest & WithCaseId(Aws::String &&value)
AWS_SUPPORT_API Aws::String SerializePayload() const override
AWS_SUPPORT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ResolveCaseRequest & WithCaseId(const Aws::String &value)
ResolveCaseRequest & WithCaseId(const char *value)
void SetCaseId(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String