AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StartDataSourceRunRequest.h
1
6#pragma once
7#include <aws/datazone/DataZone_EXPORTS.h>
8#include <aws/datazone/DataZoneRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11#include <aws/core/utils/UUID.h>
12
13namespace Aws
14{
15namespace DataZone
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_DATAZONE_API StartDataSourceRunRequest();
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 "StartDataSourceRun"; }
32
33 AWS_DATAZONE_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
42 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
43 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
44 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
45 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
46 inline StartDataSourceRunRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
47 inline StartDataSourceRunRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
48 inline StartDataSourceRunRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
50
52
55 inline const Aws::String& GetDataSourceIdentifier() const{ return m_dataSourceIdentifier; }
56 inline bool DataSourceIdentifierHasBeenSet() const { return m_dataSourceIdentifierHasBeenSet; }
57 inline void SetDataSourceIdentifier(const Aws::String& value) { m_dataSourceIdentifierHasBeenSet = true; m_dataSourceIdentifier = value; }
58 inline void SetDataSourceIdentifier(Aws::String&& value) { m_dataSourceIdentifierHasBeenSet = true; m_dataSourceIdentifier = std::move(value); }
59 inline void SetDataSourceIdentifier(const char* value) { m_dataSourceIdentifierHasBeenSet = true; m_dataSourceIdentifier.assign(value); }
62 inline StartDataSourceRunRequest& WithDataSourceIdentifier(const char* value) { SetDataSourceIdentifier(value); return *this;}
64
66
70 inline const Aws::String& GetDomainIdentifier() const{ return m_domainIdentifier; }
71 inline bool DomainIdentifierHasBeenSet() const { return m_domainIdentifierHasBeenSet; }
72 inline void SetDomainIdentifier(const Aws::String& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = value; }
73 inline void SetDomainIdentifier(Aws::String&& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = std::move(value); }
74 inline void SetDomainIdentifier(const char* value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier.assign(value); }
76 inline StartDataSourceRunRequest& WithDomainIdentifier(Aws::String&& value) { SetDomainIdentifier(std::move(value)); return *this;}
77 inline StartDataSourceRunRequest& WithDomainIdentifier(const char* value) { SetDomainIdentifier(value); return *this;}
79 private:
80
81 Aws::String m_clientToken;
82 bool m_clientTokenHasBeenSet = false;
83
84 Aws::String m_dataSourceIdentifier;
85 bool m_dataSourceIdentifierHasBeenSet = false;
86
87 Aws::String m_domainIdentifier;
88 bool m_domainIdentifierHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace DataZone
93} // namespace Aws
StartDataSourceRunRequest & WithDomainIdentifier(const Aws::String &value)
StartDataSourceRunRequest & WithDataSourceIdentifier(const char *value)
StartDataSourceRunRequest & WithDomainIdentifier(Aws::String &&value)
StartDataSourceRunRequest & WithDataSourceIdentifier(Aws::String &&value)
StartDataSourceRunRequest & WithDomainIdentifier(const char *value)
virtual const char * GetServiceRequestName() const override
AWS_DATAZONE_API Aws::String SerializePayload() const override
StartDataSourceRunRequest & WithClientToken(const char *value)
StartDataSourceRunRequest & WithClientToken(const Aws::String &value)
StartDataSourceRunRequest & WithDataSourceIdentifier(const Aws::String &value)
StartDataSourceRunRequest & WithClientToken(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String