AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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:
24 AWS_SUPPORT_API DescribeSupportedLanguagesRequest() = default;
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 template<typename IssueTypeT = Aws::String>
45 void SetIssueType(IssueTypeT&& value) { m_issueTypeHasBeenSet = true; m_issueType = std::forward<IssueTypeT>(value); }
46 template<typename IssueTypeT = Aws::String>
47 DescribeSupportedLanguagesRequest& WithIssueType(IssueTypeT&& value) { SetIssueType(std::forward<IssueTypeT>(value)); return *this;}
49
51
56 inline const Aws::String& GetServiceCode() const { return m_serviceCode; }
57 inline bool ServiceCodeHasBeenSet() const { return m_serviceCodeHasBeenSet; }
58 template<typename ServiceCodeT = Aws::String>
59 void SetServiceCode(ServiceCodeT&& value) { m_serviceCodeHasBeenSet = true; m_serviceCode = std::forward<ServiceCodeT>(value); }
60 template<typename ServiceCodeT = Aws::String>
61 DescribeSupportedLanguagesRequest& WithServiceCode(ServiceCodeT&& value) { SetServiceCode(std::forward<ServiceCodeT>(value)); return *this;}
63
65
70 inline const Aws::String& GetCategoryCode() const { return m_categoryCode; }
71 inline bool CategoryCodeHasBeenSet() const { return m_categoryCodeHasBeenSet; }
72 template<typename CategoryCodeT = Aws::String>
73 void SetCategoryCode(CategoryCodeT&& value) { m_categoryCodeHasBeenSet = true; m_categoryCode = std::forward<CategoryCodeT>(value); }
74 template<typename CategoryCodeT = Aws::String>
75 DescribeSupportedLanguagesRequest& WithCategoryCode(CategoryCodeT&& value) { SetCategoryCode(std::forward<CategoryCodeT>(value)); return *this;}
77 private:
78
79 Aws::String m_issueType;
80 bool m_issueTypeHasBeenSet = false;
81
82 Aws::String m_serviceCode;
83 bool m_serviceCodeHasBeenSet = false;
84
85 Aws::String m_categoryCode;
86 bool m_categoryCodeHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace Support
91} // namespace Aws
DescribeSupportedLanguagesRequest & WithIssueType(IssueTypeT &&value)
DescribeSupportedLanguagesRequest & WithCategoryCode(CategoryCodeT &&value)
DescribeSupportedLanguagesRequest & WithServiceCode(ServiceCodeT &&value)
AWS_SUPPORT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_SUPPORT_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String