AWS SDK for C++

AWS SDK for C++ Version 1.11.901

Loading...
Searching...
No Matches
PutEventsSystemMetadata.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/crt/cbor/Cbor.h>
9#include <aws/eventbridgev2/EventBridgeV2_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Cbor {
16class CborValue;
17} // namespace Cbor
18} // namespace Utils
19namespace EventBridgeV2 {
20namespace Model {
21
29 public:
30 AWS_EVENTBRIDGEV2_API PutEventsSystemMetadata() = default;
31 AWS_EVENTBRIDGEV2_API PutEventsSystemMetadata(const std::shared_ptr<Aws::Crt::Cbor::CborDecoder>& decoder);
32 AWS_EVENTBRIDGEV2_API PutEventsSystemMetadata& operator=(const std::shared_ptr<Aws::Crt::Cbor::CborDecoder>& decoder);
33 AWS_EVENTBRIDGEV2_API void CborEncode(Aws::Crt::Cbor::CborEncoder& encoder) const;
34
36
39 inline const Aws::String& GetEventGroupId() const { return m_eventGroupId; }
40 inline bool EventGroupIdHasBeenSet() const { return m_eventGroupIdHasBeenSet; }
41 template <typename EventGroupIdT = Aws::String>
42 void SetEventGroupId(EventGroupIdT&& value) {
43 m_eventGroupIdHasBeenSet = true;
44 m_eventGroupId = std::forward<EventGroupIdT>(value);
45 }
46 template <typename EventGroupIdT = Aws::String>
47 PutEventsSystemMetadata& WithEventGroupId(EventGroupIdT&& value) {
48 SetEventGroupId(std::forward<EventGroupIdT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetDeduplicationId() const { return m_deduplicationId; }
58 inline bool DeduplicationIdHasBeenSet() const { return m_deduplicationIdHasBeenSet; }
59 template <typename DeduplicationIdT = Aws::String>
60 void SetDeduplicationId(DeduplicationIdT&& value) {
61 m_deduplicationIdHasBeenSet = true;
62 m_deduplicationId = std::forward<DeduplicationIdT>(value);
63 }
64 template <typename DeduplicationIdT = Aws::String>
65 PutEventsSystemMetadata& WithDeduplicationId(DeduplicationIdT&& value) {
66 SetDeduplicationId(std::forward<DeduplicationIdT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_eventGroupId;
72
73 Aws::String m_deduplicationId;
74 bool m_eventGroupIdHasBeenSet = false;
75 bool m_deduplicationIdHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace EventBridgeV2
80} // namespace Aws
AWS_EVENTBRIDGEV2_API PutEventsSystemMetadata()=default
AWS_EVENTBRIDGEV2_API void CborEncode(Aws::Crt::Cbor::CborEncoder &encoder) const
PutEventsSystemMetadata & WithEventGroupId(EventGroupIdT &&value)
PutEventsSystemMetadata & WithDeduplicationId(DeduplicationIdT &&value)
AWS_EVENTBRIDGEV2_API PutEventsSystemMetadata & operator=(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
AWS_EVENTBRIDGEV2_API PutEventsSystemMetadata(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String