AWS SDK for C++

AWS SDK for C++ Version 1.11.695

Loading...
Searching...
No Matches
GetLineageNodeRequest.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/datazone/DataZoneRequest.h>
10#include <aws/datazone/DataZone_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Http {
16class URI;
17} // namespace Http
18namespace DataZone {
19namespace Model {
20
24 public:
25 AWS_DATAZONE_API GetLineageNodeRequest() = 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 "GetLineageNode"; }
32
33 AWS_DATAZONE_API Aws::String SerializePayload() const override;
34
35 AWS_DATAZONE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
36
38
41 inline const Aws::String& GetDomainIdentifier() const { return m_domainIdentifier; }
42 inline bool DomainIdentifierHasBeenSet() const { return m_domainIdentifierHasBeenSet; }
43 template <typename DomainIdentifierT = Aws::String>
44 void SetDomainIdentifier(DomainIdentifierT&& value) {
45 m_domainIdentifierHasBeenSet = true;
46 m_domainIdentifier = std::forward<DomainIdentifierT>(value);
47 }
48 template <typename DomainIdentifierT = Aws::String>
49 GetLineageNodeRequest& WithDomainIdentifier(DomainIdentifierT&& value) {
50 SetDomainIdentifier(std::forward<DomainIdentifierT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::Utils::DateTime& GetEventTimestamp() const { return m_eventTimestamp; }
60 inline bool EventTimestampHasBeenSet() const { return m_eventTimestampHasBeenSet; }
61 template <typename EventTimestampT = Aws::Utils::DateTime>
62 void SetEventTimestamp(EventTimestampT&& value) {
63 m_eventTimestampHasBeenSet = true;
64 m_eventTimestamp = std::forward<EventTimestampT>(value);
65 }
66 template <typename EventTimestampT = Aws::Utils::DateTime>
67 GetLineageNodeRequest& WithEventTimestamp(EventTimestampT&& value) {
68 SetEventTimestamp(std::forward<EventTimestampT>(value));
69 return *this;
70 }
72
74
81 inline const Aws::String& GetIdentifier() const { return m_identifier; }
82 inline bool IdentifierHasBeenSet() const { return m_identifierHasBeenSet; }
83 template <typename IdentifierT = Aws::String>
84 void SetIdentifier(IdentifierT&& value) {
85 m_identifierHasBeenSet = true;
86 m_identifier = std::forward<IdentifierT>(value);
87 }
88 template <typename IdentifierT = Aws::String>
89 GetLineageNodeRequest& WithIdentifier(IdentifierT&& value) {
90 SetIdentifier(std::forward<IdentifierT>(value));
91 return *this;
92 }
94 private:
95 Aws::String m_domainIdentifier;
96 bool m_domainIdentifierHasBeenSet = false;
97
98 Aws::Utils::DateTime m_eventTimestamp{};
99 bool m_eventTimestampHasBeenSet = false;
100
101 Aws::String m_identifier;
102 bool m_identifierHasBeenSet = false;
103};
104
105} // namespace Model
106} // namespace DataZone
107} // namespace Aws
const Aws::Utils::DateTime & GetEventTimestamp() const
virtual const char * GetServiceRequestName() const override
AWS_DATAZONE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_DATAZONE_API Aws::String SerializePayload() const override
GetLineageNodeRequest & WithEventTimestamp(EventTimestampT &&value)
AWS_DATAZONE_API GetLineageNodeRequest()=default
GetLineageNodeRequest & WithDomainIdentifier(DomainIdentifierT &&value)
void SetDomainIdentifier(DomainIdentifierT &&value)
GetLineageNodeRequest & WithIdentifier(IdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String