AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetLineageNodeRequest.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/DateTime.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace DataZone
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_DATAZONE_API GetLineageNodeRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "GetLineageNode"; }
36
37 AWS_DATAZONE_API Aws::String SerializePayload() const override;
38
39 AWS_DATAZONE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
46 inline const Aws::String& GetDomainIdentifier() const { return m_domainIdentifier; }
47 inline bool DomainIdentifierHasBeenSet() const { return m_domainIdentifierHasBeenSet; }
48 template<typename DomainIdentifierT = Aws::String>
49 void SetDomainIdentifier(DomainIdentifierT&& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = std::forward<DomainIdentifierT>(value); }
50 template<typename DomainIdentifierT = Aws::String>
51 GetLineageNodeRequest& WithDomainIdentifier(DomainIdentifierT&& value) { SetDomainIdentifier(std::forward<DomainIdentifierT>(value)); return *this;}
53
55
58 inline const Aws::Utils::DateTime& GetEventTimestamp() const { return m_eventTimestamp; }
59 inline bool EventTimestampHasBeenSet() const { return m_eventTimestampHasBeenSet; }
60 template<typename EventTimestampT = Aws::Utils::DateTime>
61 void SetEventTimestamp(EventTimestampT&& value) { m_eventTimestampHasBeenSet = true; m_eventTimestamp = std::forward<EventTimestampT>(value); }
62 template<typename EventTimestampT = Aws::Utils::DateTime>
63 GetLineageNodeRequest& WithEventTimestamp(EventTimestampT&& value) { SetEventTimestamp(std::forward<EventTimestampT>(value)); return *this;}
65
67
74 inline const Aws::String& GetIdentifier() const { return m_identifier; }
75 inline bool IdentifierHasBeenSet() const { return m_identifierHasBeenSet; }
76 template<typename IdentifierT = Aws::String>
77 void SetIdentifier(IdentifierT&& value) { m_identifierHasBeenSet = true; m_identifier = std::forward<IdentifierT>(value); }
78 template<typename IdentifierT = Aws::String>
79 GetLineageNodeRequest& WithIdentifier(IdentifierT&& value) { SetIdentifier(std::forward<IdentifierT>(value)); return *this;}
81 private:
82
83 Aws::String m_domainIdentifier;
84 bool m_domainIdentifierHasBeenSet = false;
85
86 Aws::Utils::DateTime m_eventTimestamp{};
87 bool m_eventTimestampHasBeenSet = false;
88
89 Aws::String m_identifier;
90 bool m_identifierHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace DataZone
95} // 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