AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
DescribeAccountCustomizationRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/quicksight/QuickSightRequest.h>
9#include <aws/quicksight/QuickSight_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace QuickSight {
18namespace Model {
19
23 public:
24 AWS_QUICKSIGHT_API DescribeAccountCustomizationRequest() = 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 "DescribeAccountCustomization"; }
31
32 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
33
34 AWS_QUICKSIGHT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
35
37
41 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
42 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
43 template <typename AwsAccountIdT = Aws::String>
44 void SetAwsAccountId(AwsAccountIdT&& value) {
45 m_awsAccountIdHasBeenSet = true;
46 m_awsAccountId = std::forward<AwsAccountIdT>(value);
47 }
48 template <typename AwsAccountIdT = Aws::String>
50 SetAwsAccountId(std::forward<AwsAccountIdT>(value));
51 return *this;
52 }
54
56
60 inline const Aws::String& GetNamespace() const { return m_namespace; }
61 inline bool NamespaceHasBeenSet() const { return m_namespaceHasBeenSet; }
62 template <typename NamespaceT = Aws::String>
63 void SetNamespace(NamespaceT&& value) {
64 m_namespaceHasBeenSet = true;
65 m_namespace = std::forward<NamespaceT>(value);
66 }
67 template <typename NamespaceT = Aws::String>
69 SetNamespace(std::forward<NamespaceT>(value));
70 return *this;
71 }
73
75
83 inline bool GetResolved() const { return m_resolved; }
84 inline bool ResolvedHasBeenSet() const { return m_resolvedHasBeenSet; }
85 inline void SetResolved(bool value) {
86 m_resolvedHasBeenSet = true;
87 m_resolved = value;
88 }
90 SetResolved(value);
91 return *this;
92 }
94 private:
95 Aws::String m_awsAccountId;
96
97 Aws::String m_namespace;
98
99 bool m_resolved{false};
100 bool m_awsAccountIdHasBeenSet = false;
101 bool m_namespaceHasBeenSet = false;
102 bool m_resolvedHasBeenSet = false;
103};
104
105} // namespace Model
106} // namespace QuickSight
107} // namespace Aws
AWS_QUICKSIGHT_API DescribeAccountCustomizationRequest()=default
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
AWS_QUICKSIGHT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DescribeAccountCustomizationRequest & WithAwsAccountId(AwsAccountIdT &&value)
DescribeAccountCustomizationRequest & WithNamespace(NamespaceT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String