AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateThemeAliasRequest.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 <utility>
11
12namespace Aws
13{
14namespace QuickSight
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_QUICKSIGHT_API CreateThemeAliasRequest();
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 "CreateThemeAlias"; }
31
32 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetAwsAccountId() const{ return m_awsAccountId; }
41 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
42 inline void SetAwsAccountId(const Aws::String& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = value; }
43 inline void SetAwsAccountId(Aws::String&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::move(value); }
44 inline void SetAwsAccountId(const char* value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId.assign(value); }
45 inline CreateThemeAliasRequest& WithAwsAccountId(const Aws::String& value) { SetAwsAccountId(value); return *this;}
46 inline CreateThemeAliasRequest& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;}
47 inline CreateThemeAliasRequest& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;}
49
51
54 inline const Aws::String& GetThemeId() const{ return m_themeId; }
55 inline bool ThemeIdHasBeenSet() const { return m_themeIdHasBeenSet; }
56 inline void SetThemeId(const Aws::String& value) { m_themeIdHasBeenSet = true; m_themeId = value; }
57 inline void SetThemeId(Aws::String&& value) { m_themeIdHasBeenSet = true; m_themeId = std::move(value); }
58 inline void SetThemeId(const char* value) { m_themeIdHasBeenSet = true; m_themeId.assign(value); }
59 inline CreateThemeAliasRequest& WithThemeId(const Aws::String& value) { SetThemeId(value); return *this;}
60 inline CreateThemeAliasRequest& WithThemeId(Aws::String&& value) { SetThemeId(std::move(value)); return *this;}
61 inline CreateThemeAliasRequest& WithThemeId(const char* value) { SetThemeId(value); return *this;}
63
65
70 inline const Aws::String& GetAliasName() const{ return m_aliasName; }
71 inline bool AliasNameHasBeenSet() const { return m_aliasNameHasBeenSet; }
72 inline void SetAliasName(const Aws::String& value) { m_aliasNameHasBeenSet = true; m_aliasName = value; }
73 inline void SetAliasName(Aws::String&& value) { m_aliasNameHasBeenSet = true; m_aliasName = std::move(value); }
74 inline void SetAliasName(const char* value) { m_aliasNameHasBeenSet = true; m_aliasName.assign(value); }
75 inline CreateThemeAliasRequest& WithAliasName(const Aws::String& value) { SetAliasName(value); return *this;}
76 inline CreateThemeAliasRequest& WithAliasName(Aws::String&& value) { SetAliasName(std::move(value)); return *this;}
77 inline CreateThemeAliasRequest& WithAliasName(const char* value) { SetAliasName(value); return *this;}
79
81
84 inline long long GetThemeVersionNumber() const{ return m_themeVersionNumber; }
85 inline bool ThemeVersionNumberHasBeenSet() const { return m_themeVersionNumberHasBeenSet; }
86 inline void SetThemeVersionNumber(long long value) { m_themeVersionNumberHasBeenSet = true; m_themeVersionNumber = value; }
87 inline CreateThemeAliasRequest& WithThemeVersionNumber(long long value) { SetThemeVersionNumber(value); return *this;}
89 private:
90
91 Aws::String m_awsAccountId;
92 bool m_awsAccountIdHasBeenSet = false;
93
94 Aws::String m_themeId;
95 bool m_themeIdHasBeenSet = false;
96
97 Aws::String m_aliasName;
98 bool m_aliasNameHasBeenSet = false;
99
100 long long m_themeVersionNumber;
101 bool m_themeVersionNumberHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace QuickSight
106} // namespace Aws
CreateThemeAliasRequest & WithAwsAccountId(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
CreateThemeAliasRequest & WithAliasName(const char *value)
CreateThemeAliasRequest & WithThemeVersionNumber(long long value)
CreateThemeAliasRequest & WithAwsAccountId(const char *value)
CreateThemeAliasRequest & WithThemeId(const char *value)
CreateThemeAliasRequest & WithThemeId(Aws::String &&value)
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
CreateThemeAliasRequest & WithThemeId(const Aws::String &value)
CreateThemeAliasRequest & WithAwsAccountId(Aws::String &&value)
CreateThemeAliasRequest & WithAliasName(Aws::String &&value)
CreateThemeAliasRequest & WithAliasName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String