AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ActivityTaskStartedEventAttributes.h
1
6#pragma once
7#include <aws/swf/SWF_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace SWF
22{
23namespace Model
24{
25
33 {
34 public:
39
40
42
46 inline const Aws::String& GetIdentity() const{ return m_identity; }
47 inline bool IdentityHasBeenSet() const { return m_identityHasBeenSet; }
48 inline void SetIdentity(const Aws::String& value) { m_identityHasBeenSet = true; m_identity = value; }
49 inline void SetIdentity(Aws::String&& value) { m_identityHasBeenSet = true; m_identity = std::move(value); }
50 inline void SetIdentity(const char* value) { m_identityHasBeenSet = true; m_identity.assign(value); }
51 inline ActivityTaskStartedEventAttributes& WithIdentity(const Aws::String& value) { SetIdentity(value); return *this;}
52 inline ActivityTaskStartedEventAttributes& WithIdentity(Aws::String&& value) { SetIdentity(std::move(value)); return *this;}
53 inline ActivityTaskStartedEventAttributes& WithIdentity(const char* value) { SetIdentity(value); return *this;}
55
57
62 inline long long GetScheduledEventId() const{ return m_scheduledEventId; }
63 inline bool ScheduledEventIdHasBeenSet() const { return m_scheduledEventIdHasBeenSet; }
64 inline void SetScheduledEventId(long long value) { m_scheduledEventIdHasBeenSet = true; m_scheduledEventId = value; }
65 inline ActivityTaskStartedEventAttributes& WithScheduledEventId(long long value) { SetScheduledEventId(value); return *this;}
67 private:
68
69 Aws::String m_identity;
70 bool m_identityHasBeenSet = false;
71
72 long long m_scheduledEventId;
73 bool m_scheduledEventIdHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace SWF
78} // namespace Aws
ActivityTaskStartedEventAttributes & WithScheduledEventId(long long value)
AWS_SWF_API ActivityTaskStartedEventAttributes(Aws::Utils::Json::JsonView jsonValue)
ActivityTaskStartedEventAttributes & WithIdentity(Aws::String &&value)
ActivityTaskStartedEventAttributes & WithIdentity(const char *value)
ActivityTaskStartedEventAttributes & WithIdentity(const Aws::String &value)
AWS_SWF_API ActivityTaskStartedEventAttributes & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_SWF_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue