AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 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 PutDataSetRefreshPropertiesRequest& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;}
47 inline PutDataSetRefreshPropertiesRequest& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;}
49
51
54 inline const Aws::String& GetDataSetId() const{ return m_dataSetId; }
55 inline bool DataSetIdHasBeenSet() const { return m_dataSetIdHasBeenSet; }
56 inline void SetDataSetId(const Aws::String& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = value; }
57 inline void SetDataSetId(Aws::String&& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = std::move(value); }
58 inline void SetDataSetId(const char* value) { m_dataSetIdHasBeenSet = true; m_dataSetId.assign(value); }
59 inline PutDataSetRefreshPropertiesRequest& WithDataSetId(const Aws::String& value) { SetDataSetId(value); return *this;}
60 inline PutDataSetRefreshPropertiesRequest& WithDataSetId(Aws::String&& value) { SetDataSetId(std::move(value)); return *this;}
61 inline PutDataSetRefreshPropertiesRequest& WithDataSetId(const char* value) { SetDataSetId(value); return *this;}
63
65
68 inline const DataSetRefreshProperties& GetDataSetRefreshProperties() const{ return m_dataSetRefreshProperties; }
69 inline bool DataSetRefreshPropertiesHasBeenSet() const { return m_dataSetRefreshPropertiesHasBeenSet; }
70 inline void SetDataSetRefreshProperties(const DataSetRefreshProperties& value) { m_dataSetRefreshPropertiesHasBeenSet = true; m_dataSetRefreshProperties = value; }
71 inline void SetDataSetRefreshProperties(DataSetRefreshProperties&& value) { m_dataSetRefreshPropertiesHasBeenSet = true; m_dataSetRefreshProperties = std::move(value); }
75 private:
76
77 Aws::String m_awsAccountId;
78 bool m_awsAccountIdHasBeenSet = false;
79
80 Aws::String m_dataSetId;
81 bool m_dataSetIdHasBeenSet = false;
82
83 DataSetRefreshProperties m_dataSetRefreshProperties;
84 bool m_dataSetRefreshPropertiesHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace QuickSight
89} // namespace Aws
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
PutDataSetRefreshPropertiesRequest & WithDataSetId(const char *value)
PutDataSetRefreshPropertiesRequest & WithDataSetId(Aws::String &&value)
PutDataSetRefreshPropertiesRequest & WithDataSetId(const Aws::String &value)
PutDataSetRefreshPropertiesRequest & WithAwsAccountId(const Aws::String &value)
PutDataSetRefreshPropertiesRequest & WithDataSetRefreshProperties(const DataSetRefreshProperties &value)
PutDataSetRefreshPropertiesRequest & WithDataSetRefreshProperties(DataSetRefreshProperties &&value)
PutDataSetRefreshPropertiesRequest & WithAwsAccountId(Aws::String &&value)
PutDataSetRefreshPropertiesRequest & WithAwsAccountId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String