AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeSupportedLanguagesRequest.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:
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 "DescribeSupportedLanguages"; }
31
32 AWS_SUPPORT_API Aws::String SerializePayload() const override;
33
35
36
38
42 inline const Aws::String& GetIssueType() const{ return m_issueType; }
43 inline bool IssueTypeHasBeenSet() const { return m_issueTypeHasBeenSet; }
44 inline void SetIssueType(const Aws::String& value) { m_issueTypeHasBeenSet = true; m_issueType = value; }
45 inline void SetIssueType(Aws::String&& value) { m_issueTypeHasBeenSet = true; m_issueType = std::move(value); }
46 inline void SetIssueType(const char* value) { m_issueTypeHasBeenSet = true; m_issueType.assign(value); }
47 inline DescribeSupportedLanguagesRequest& WithIssueType(const Aws::String& value) { SetIssueType(value); return *this;}
48 inline DescribeSupportedLanguagesRequest& WithIssueType(Aws::String&& value) { SetIssueType(std::move(value)); return *this;}
49 inline DescribeSupportedLanguagesRequest& WithIssueType(const char* value) { SetIssueType(value); return *this;}
51
53
58 inline const Aws::String& GetServiceCode() const{ return m_serviceCode; }
59 inline bool ServiceCodeHasBeenSet() const { return m_serviceCodeHasBeenSet; }
60 inline void SetServiceCode(const Aws::String& value) { m_serviceCodeHasBeenSet = true; m_serviceCode = value; }
61 inline void SetServiceCode(Aws::String&& value) { m_serviceCodeHasBeenSet = true; m_serviceCode = std::move(value); }
62 inline void SetServiceCode(const char* value) { m_serviceCodeHasBeenSet = true; m_serviceCode.assign(value); }
63 inline DescribeSupportedLanguagesRequest& WithServiceCode(const Aws::String& value) { SetServiceCode(value); return *this;}
64 inline DescribeSupportedLanguagesRequest& WithServiceCode(Aws::String&& value) { SetServiceCode(std::move(value)); return *this;}
65 inline DescribeSupportedLanguagesRequest& WithServiceCode(const char* value) { SetServiceCode(value); return *this;}
67
69
74 inline const Aws::String& GetCategoryCode() const{ return m_categoryCode; }
75 inline bool CategoryCodeHasBeenSet() const { return m_categoryCodeHasBeenSet; }
76 inline void SetCategoryCode(const Aws::String& value) { m_categoryCodeHasBeenSet = true; m_categoryCode = value; }
77 inline void SetCategoryCode(Aws::String&& value) { m_categoryCodeHasBeenSet = true; m_categoryCode = std::move(value); }
78 inline void SetCategoryCode(const char* value) { m_categoryCodeHasBeenSet = true; m_categoryCode.assign(value); }
80 inline DescribeSupportedLanguagesRequest& WithCategoryCode(Aws::String&& value) { SetCategoryCode(std::move(value)); return *this;}
81 inline DescribeSupportedLanguagesRequest& WithCategoryCode(const char* value) { SetCategoryCode(value); return *this;}
83 private:
84
85 Aws::String m_issueType;
86 bool m_issueTypeHasBeenSet = false;
87
88 Aws::String m_serviceCode;
89 bool m_serviceCodeHasBeenSet = false;
90
91 Aws::String m_categoryCode;
92 bool m_categoryCodeHasBeenSet = false;
93 };
94
95} // namespace Model
96} // namespace Support
97} // namespace Aws
DescribeSupportedLanguagesRequest & WithCategoryCode(const Aws::String &value)
DescribeSupportedLanguagesRequest & WithCategoryCode(const char *value)
DescribeSupportedLanguagesRequest & WithServiceCode(Aws::String &&value)
DescribeSupportedLanguagesRequest & WithCategoryCode(Aws::String &&value)
AWS_SUPPORT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeSupportedLanguagesRequest & WithIssueType(const Aws::String &value)
DescribeSupportedLanguagesRequest & WithServiceCode(const char *value)
DescribeSupportedLanguagesRequest & WithIssueType(Aws::String &&value)
AWS_SUPPORT_API Aws::String SerializePayload() const override
DescribeSupportedLanguagesRequest & WithServiceCode(const Aws::String &value)
DescribeSupportedLanguagesRequest & WithIssueType(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String