AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateBrandRequest.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/BrandDefinition.h>
11#include <utility>
12
13namespace Aws
14{
15namespace QuickSight
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_QUICKSIGHT_API UpdateBrandRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateBrand"; }
32
33 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
41 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
42 template<typename AwsAccountIdT = Aws::String>
43 void SetAwsAccountId(AwsAccountIdT&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::forward<AwsAccountIdT>(value); }
44 template<typename AwsAccountIdT = Aws::String>
45 UpdateBrandRequest& WithAwsAccountId(AwsAccountIdT&& value) { SetAwsAccountId(std::forward<AwsAccountIdT>(value)); return *this;}
47
49
52 inline const Aws::String& GetBrandId() const { return m_brandId; }
53 inline bool BrandIdHasBeenSet() const { return m_brandIdHasBeenSet; }
54 template<typename BrandIdT = Aws::String>
55 void SetBrandId(BrandIdT&& value) { m_brandIdHasBeenSet = true; m_brandId = std::forward<BrandIdT>(value); }
56 template<typename BrandIdT = Aws::String>
57 UpdateBrandRequest& WithBrandId(BrandIdT&& value) { SetBrandId(std::forward<BrandIdT>(value)); return *this;}
59
61
64 inline const BrandDefinition& GetBrandDefinition() const { return m_brandDefinition; }
65 inline bool BrandDefinitionHasBeenSet() const { return m_brandDefinitionHasBeenSet; }
66 template<typename BrandDefinitionT = BrandDefinition>
67 void SetBrandDefinition(BrandDefinitionT&& value) { m_brandDefinitionHasBeenSet = true; m_brandDefinition = std::forward<BrandDefinitionT>(value); }
68 template<typename BrandDefinitionT = BrandDefinition>
69 UpdateBrandRequest& WithBrandDefinition(BrandDefinitionT&& value) { SetBrandDefinition(std::forward<BrandDefinitionT>(value)); return *this;}
71 private:
72
73 Aws::String m_awsAccountId;
74 bool m_awsAccountIdHasBeenSet = false;
75
76 Aws::String m_brandId;
77 bool m_brandIdHasBeenSet = false;
78
79 BrandDefinition m_brandDefinition;
80 bool m_brandDefinitionHasBeenSet = false;
81 };
82
83} // namespace Model
84} // namespace QuickSight
85} // namespace Aws
virtual const char * GetServiceRequestName() const override
UpdateBrandRequest & WithAwsAccountId(AwsAccountIdT &&value)
const BrandDefinition & GetBrandDefinition() const
UpdateBrandRequest & WithBrandDefinition(BrandDefinitionT &&value)
AWS_QUICKSIGHT_API UpdateBrandRequest()=default
UpdateBrandRequest & WithBrandId(BrandIdT &&value)
void SetBrandDefinition(BrandDefinitionT &&value)
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String