AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
PutDataSetRefreshPropertiesRequest.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/DataSetRefreshProperties.h>
11#include <utility>
12
13namespace Aws
14{
15namespace QuickSight
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_QUICKSIGHT_API PutDataSetRefreshPropertiesRequest() = 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 "PutDataSetRefreshProperties"; }
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 PutDataSetRefreshPropertiesRequest& WithAwsAccountId(AwsAccountIdT&& value) { SetAwsAccountId(std::forward<AwsAccountIdT>(value)); return *this;}
47
49
52 inline const Aws::String& GetDataSetId() const { return m_dataSetId; }
53 inline bool DataSetIdHasBeenSet() const { return m_dataSetIdHasBeenSet; }
54 template<typename DataSetIdT = Aws::String>
55 void SetDataSetId(DataSetIdT&& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = std::forward<DataSetIdT>(value); }
56 template<typename DataSetIdT = Aws::String>
57 PutDataSetRefreshPropertiesRequest& WithDataSetId(DataSetIdT&& value) { SetDataSetId(std::forward<DataSetIdT>(value)); return *this;}
59
61
64 inline const DataSetRefreshProperties& GetDataSetRefreshProperties() const { return m_dataSetRefreshProperties; }
65 inline bool DataSetRefreshPropertiesHasBeenSet() const { return m_dataSetRefreshPropertiesHasBeenSet; }
66 template<typename DataSetRefreshPropertiesT = DataSetRefreshProperties>
67 void SetDataSetRefreshProperties(DataSetRefreshPropertiesT&& value) { m_dataSetRefreshPropertiesHasBeenSet = true; m_dataSetRefreshProperties = std::forward<DataSetRefreshPropertiesT>(value); }
68 template<typename DataSetRefreshPropertiesT = DataSetRefreshProperties>
69 PutDataSetRefreshPropertiesRequest& WithDataSetRefreshProperties(DataSetRefreshPropertiesT&& value) { SetDataSetRefreshProperties(std::forward<DataSetRefreshPropertiesT>(value)); return *this;}
71 private:
72
73 Aws::String m_awsAccountId;
74 bool m_awsAccountIdHasBeenSet = false;
75
76 Aws::String m_dataSetId;
77 bool m_dataSetIdHasBeenSet = false;
78
79 DataSetRefreshProperties m_dataSetRefreshProperties;
80 bool m_dataSetRefreshPropertiesHasBeenSet = false;
81 };
82
83} // namespace Model
84} // namespace QuickSight
85} // namespace Aws
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
PutDataSetRefreshPropertiesRequest & WithDataSetRefreshProperties(DataSetRefreshPropertiesT &&value)
PutDataSetRefreshPropertiesRequest & WithDataSetId(DataSetIdT &&value)
PutDataSetRefreshPropertiesRequest & WithAwsAccountId(AwsAccountIdT &&value)
AWS_QUICKSIGHT_API PutDataSetRefreshPropertiesRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String