AWS SDK for C++

AWS SDK for C++ Version 1.11.763

Loading...
Searching...
No Matches
DescribeDashboardSnapshotJobRequest.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 DescribeDashboardSnapshotJobRequest() = 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 "DescribeDashboardSnapshotJob"; }
28
29 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
37 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
38 template <typename AwsAccountIdT = Aws::String>
39 void SetAwsAccountId(AwsAccountIdT&& value) {
40 m_awsAccountIdHasBeenSet = true;
41 m_awsAccountId = std::forward<AwsAccountIdT>(value);
42 }
43 template <typename AwsAccountIdT = Aws::String>
45 SetAwsAccountId(std::forward<AwsAccountIdT>(value));
46 return *this;
47 }
49
51
54 inline const Aws::String& GetDashboardId() const { return m_dashboardId; }
55 inline bool DashboardIdHasBeenSet() const { return m_dashboardIdHasBeenSet; }
56 template <typename DashboardIdT = Aws::String>
57 void SetDashboardId(DashboardIdT&& value) {
58 m_dashboardIdHasBeenSet = true;
59 m_dashboardId = std::forward<DashboardIdT>(value);
60 }
61 template <typename DashboardIdT = Aws::String>
63 SetDashboardId(std::forward<DashboardIdT>(value));
64 return *this;
65 }
67
69
73 inline const Aws::String& GetSnapshotJobId() const { return m_snapshotJobId; }
74 inline bool SnapshotJobIdHasBeenSet() const { return m_snapshotJobIdHasBeenSet; }
75 template <typename SnapshotJobIdT = Aws::String>
76 void SetSnapshotJobId(SnapshotJobIdT&& value) {
77 m_snapshotJobIdHasBeenSet = true;
78 m_snapshotJobId = std::forward<SnapshotJobIdT>(value);
79 }
80 template <typename SnapshotJobIdT = Aws::String>
82 SetSnapshotJobId(std::forward<SnapshotJobIdT>(value));
83 return *this;
84 }
86 private:
87 Aws::String m_awsAccountId;
88
89 Aws::String m_dashboardId;
90
91 Aws::String m_snapshotJobId;
92 bool m_awsAccountIdHasBeenSet = false;
93 bool m_dashboardIdHasBeenSet = false;
94 bool m_snapshotJobIdHasBeenSet = false;
95};
96
97} // namespace Model
98} // namespace QuickSight
99} // namespace Aws
DescribeDashboardSnapshotJobRequest & WithDashboardId(DashboardIdT &&value)
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
AWS_QUICKSIGHT_API DescribeDashboardSnapshotJobRequest()=default
DescribeDashboardSnapshotJobRequest & WithAwsAccountId(AwsAccountIdT &&value)
DescribeDashboardSnapshotJobRequest & WithSnapshotJobId(SnapshotJobIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String