AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeDashboardSnapshotJobRequest.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:
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 "DescribeDashboardSnapshotJob"; }
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); }
46 inline DescribeDashboardSnapshotJobRequest& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;}
47 inline DescribeDashboardSnapshotJobRequest& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;}
49
51
54 inline const Aws::String& GetDashboardId() const{ return m_dashboardId; }
55 inline bool DashboardIdHasBeenSet() const { return m_dashboardIdHasBeenSet; }
56 inline void SetDashboardId(const Aws::String& value) { m_dashboardIdHasBeenSet = true; m_dashboardId = value; }
57 inline void SetDashboardId(Aws::String&& value) { m_dashboardIdHasBeenSet = true; m_dashboardId = std::move(value); }
58 inline void SetDashboardId(const char* value) { m_dashboardIdHasBeenSet = true; m_dashboardId.assign(value); }
60 inline DescribeDashboardSnapshotJobRequest& WithDashboardId(Aws::String&& value) { SetDashboardId(std::move(value)); return *this;}
61 inline DescribeDashboardSnapshotJobRequest& WithDashboardId(const char* value) { SetDashboardId(value); return *this;}
63
65
69 inline const Aws::String& GetSnapshotJobId() const{ return m_snapshotJobId; }
70 inline bool SnapshotJobIdHasBeenSet() const { return m_snapshotJobIdHasBeenSet; }
71 inline void SetSnapshotJobId(const Aws::String& value) { m_snapshotJobIdHasBeenSet = true; m_snapshotJobId = value; }
72 inline void SetSnapshotJobId(Aws::String&& value) { m_snapshotJobIdHasBeenSet = true; m_snapshotJobId = std::move(value); }
73 inline void SetSnapshotJobId(const char* value) { m_snapshotJobIdHasBeenSet = true; m_snapshotJobId.assign(value); }
75 inline DescribeDashboardSnapshotJobRequest& WithSnapshotJobId(Aws::String&& value) { SetSnapshotJobId(std::move(value)); return *this;}
76 inline DescribeDashboardSnapshotJobRequest& WithSnapshotJobId(const char* value) { SetSnapshotJobId(value); return *this;}
78 private:
79
80 Aws::String m_awsAccountId;
81 bool m_awsAccountIdHasBeenSet = false;
82
83 Aws::String m_dashboardId;
84 bool m_dashboardIdHasBeenSet = false;
85
86 Aws::String m_snapshotJobId;
87 bool m_snapshotJobIdHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace QuickSight
92} // namespace Aws
DescribeDashboardSnapshotJobRequest & WithAwsAccountId(const char *value)
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
DescribeDashboardSnapshotJobRequest & WithDashboardId(const Aws::String &value)
DescribeDashboardSnapshotJobRequest & WithDashboardId(Aws::String &&value)
DescribeDashboardSnapshotJobRequest & WithSnapshotJobId(const char *value)
DescribeDashboardSnapshotJobRequest & WithSnapshotJobId(const Aws::String &value)
DescribeDashboardSnapshotJobRequest & WithSnapshotJobId(Aws::String &&value)
DescribeDashboardSnapshotJobRequest & WithDashboardId(const char *value)
DescribeDashboardSnapshotJobRequest & WithAwsAccountId(Aws::String &&value)
DescribeDashboardSnapshotJobRequest & WithAwsAccountId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String