AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
PostLineageEventRequest.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 <aws/core/utils/Array.h>
11#include <utility>
12#include <aws/core/utils/UUID.h>
13
14namespace Aws
15{
16namespace Http
17{
18 class URI;
19} //namespace Http
20namespace DataZone
21{
22namespace Model
23{
24
28 {
29 public:
30 AWS_DATAZONE_API PostLineageEventRequest();
31
32 // Service request name is the Operation name which will send this request out,
33 // each operation should has unique request name, so that we can get operation's name from this request.
34 // Note: this is not true for response, multiple operations may have the same response name,
35 // so we can not get operation's name from response.
36 inline virtual const char* GetServiceRequestName() const override { return "PostLineageEvent"; }
37
38 AWS_DATAZONE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
46 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
47 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
48 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
49 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
50 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
51 inline PostLineageEventRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
52 inline PostLineageEventRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
53 inline PostLineageEventRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
55
57
60 inline const Aws::String& GetDomainIdentifier() const{ return m_domainIdentifier; }
61 inline bool DomainIdentifierHasBeenSet() const { return m_domainIdentifierHasBeenSet; }
62 inline void SetDomainIdentifier(const Aws::String& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = value; }
63 inline void SetDomainIdentifier(Aws::String&& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = std::move(value); }
64 inline void SetDomainIdentifier(const char* value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier.assign(value); }
65 inline PostLineageEventRequest& WithDomainIdentifier(const Aws::String& value) { SetDomainIdentifier(value); return *this;}
66 inline PostLineageEventRequest& WithDomainIdentifier(Aws::String&& value) { SetDomainIdentifier(std::move(value)); return *this;}
67 inline PostLineageEventRequest& WithDomainIdentifier(const char* value) { SetDomainIdentifier(value); return *this;}
69 private:
70
71 Aws::String m_clientToken;
72 bool m_clientTokenHasBeenSet = false;
73
74 Aws::String m_domainIdentifier;
75 bool m_domainIdentifierHasBeenSet = false;
76
77 };
78
79} // namespace Model
80} // namespace DataZone
81} // namespace Aws
bool DomainIdentifierHasBeenSet() const
PostLineageEventRequest & WithDomainIdentifier(const char *value)
void SetDomainIdentifier(const char *value)
const Aws::String & GetClientToken() const
bool ClientTokenHasBeenSet() const
AWS_DATAZONE_API PostLineageEventRequest()
const Aws::String & GetDomainIdentifier() const
void SetDomainIdentifier(Aws::String &&value)
PostLineageEventRequest & WithClientToken(Aws::String &&value)
PostLineageEventRequest & WithClientToken(const char *value)
PostLineageEventRequest & WithDomainIdentifier(const Aws::String &value)
void SetDomainIdentifier(const Aws::String &value)
PostLineageEventRequest & WithDomainIdentifier(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
AWS_DATAZONE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
void SetClientToken(Aws::String &&value)
void SetClientToken(const Aws::String &value)
void SetClientToken(const char *value)
PostLineageEventRequest & WithClientToken(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String