AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
DescribeAnalysisPermissionsRequest.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 QuickSight {
15namespace Model {
16
20 public:
21 AWS_QUICKSIGHT_API DescribeAnalysisPermissionsRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeAnalysisPermissions"; }
28
29 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
30
32
37 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
38 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
39 template <typename AwsAccountIdT = Aws::String>
40 void SetAwsAccountId(AwsAccountIdT&& value) {
41 m_awsAccountIdHasBeenSet = true;
42 m_awsAccountId = std::forward<AwsAccountIdT>(value);
43 }
44 template <typename AwsAccountIdT = Aws::String>
46 SetAwsAccountId(std::forward<AwsAccountIdT>(value));
47 return *this;
48 }
50
52
56 inline const Aws::String& GetAnalysisId() const { return m_analysisId; }
57 inline bool AnalysisIdHasBeenSet() const { return m_analysisIdHasBeenSet; }
58 template <typename AnalysisIdT = Aws::String>
59 void SetAnalysisId(AnalysisIdT&& value) {
60 m_analysisIdHasBeenSet = true;
61 m_analysisId = std::forward<AnalysisIdT>(value);
62 }
63 template <typename AnalysisIdT = Aws::String>
65 SetAnalysisId(std::forward<AnalysisIdT>(value));
66 return *this;
67 }
69 private:
70 Aws::String m_awsAccountId;
71
72 Aws::String m_analysisId;
73 bool m_awsAccountIdHasBeenSet = false;
74 bool m_analysisIdHasBeenSet = false;
75};
76
77} // namespace Model
78} // namespace QuickSight
79} // namespace Aws
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
AWS_QUICKSIGHT_API DescribeAnalysisPermissionsRequest()=default
DescribeAnalysisPermissionsRequest & WithAnalysisId(AnalysisIdT &&value)
DescribeAnalysisPermissionsRequest & WithAwsAccountId(AwsAccountIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String