AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateAccountCustomizationRequest.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/QuickSightRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/quicksight/model/AccountCustomization.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace QuickSight
20{
21namespace Model
22{
23
27 {
28 public:
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "UpdateAccountCustomization"; }
36
37 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
38
39 AWS_QUICKSIGHT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
47 inline const Aws::String& GetAwsAccountId() const{ return m_awsAccountId; }
48 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
49 inline void SetAwsAccountId(const Aws::String& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = value; }
50 inline void SetAwsAccountId(Aws::String&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::move(value); }
51 inline void SetAwsAccountId(const char* value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId.assign(value); }
53 inline UpdateAccountCustomizationRequest& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;}
54 inline UpdateAccountCustomizationRequest& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;}
56
58
62 inline const Aws::String& GetNamespace() const{ return m_namespace; }
63 inline bool NamespaceHasBeenSet() const { return m_namespaceHasBeenSet; }
64 inline void SetNamespace(const Aws::String& value) { m_namespaceHasBeenSet = true; m_namespace = value; }
65 inline void SetNamespace(Aws::String&& value) { m_namespaceHasBeenSet = true; m_namespace = std::move(value); }
66 inline void SetNamespace(const char* value) { m_namespaceHasBeenSet = true; m_namespace.assign(value); }
67 inline UpdateAccountCustomizationRequest& WithNamespace(const Aws::String& value) { SetNamespace(value); return *this;}
68 inline UpdateAccountCustomizationRequest& WithNamespace(Aws::String&& value) { SetNamespace(std::move(value)); return *this;}
69 inline UpdateAccountCustomizationRequest& WithNamespace(const char* value) { SetNamespace(value); return *this;}
71
73
77 inline const AccountCustomization& GetAccountCustomization() const{ return m_accountCustomization; }
78 inline bool AccountCustomizationHasBeenSet() const { return m_accountCustomizationHasBeenSet; }
79 inline void SetAccountCustomization(const AccountCustomization& value) { m_accountCustomizationHasBeenSet = true; m_accountCustomization = value; }
80 inline void SetAccountCustomization(AccountCustomization&& value) { m_accountCustomizationHasBeenSet = true; m_accountCustomization = std::move(value); }
84 private:
85
86 Aws::String m_awsAccountId;
87 bool m_awsAccountIdHasBeenSet = false;
88
89 Aws::String m_namespace;
90 bool m_namespaceHasBeenSet = false;
91
92 AccountCustomization m_accountCustomization;
93 bool m_accountCustomizationHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace QuickSight
98} // namespace Aws
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
UpdateAccountCustomizationRequest & WithAwsAccountId(const char *value)
UpdateAccountCustomizationRequest & WithNamespace(Aws::String &&value)
UpdateAccountCustomizationRequest & WithAwsAccountId(const Aws::String &value)
AWS_QUICKSIGHT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
UpdateAccountCustomizationRequest & WithNamespace(const Aws::String &value)
UpdateAccountCustomizationRequest & WithAwsAccountId(Aws::String &&value)
UpdateAccountCustomizationRequest & WithAccountCustomization(const AccountCustomization &value)
UpdateAccountCustomizationRequest & WithAccountCustomization(AccountCustomization &&value)
UpdateAccountCustomizationRequest & WithNamespace(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String