AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
WorkflowExecutionCanceledEventAttributes.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
45 inline const Aws::String& GetDetails() const{ return m_details; }
46 inline bool DetailsHasBeenSet() const { return m_detailsHasBeenSet; }
47 inline void SetDetails(const Aws::String& value) { m_detailsHasBeenSet = true; m_details = value; }
48 inline void SetDetails(Aws::String&& value) { m_detailsHasBeenSet = true; m_details = std::move(value); }
49 inline void SetDetails(const char* value) { m_detailsHasBeenSet = true; m_details.assign(value); }
50 inline WorkflowExecutionCanceledEventAttributes& WithDetails(const Aws::String& value) { SetDetails(value); return *this;}
51 inline WorkflowExecutionCanceledEventAttributes& WithDetails(Aws::String&& value) { SetDetails(std::move(value)); return *this;}
52 inline WorkflowExecutionCanceledEventAttributes& WithDetails(const char* value) { SetDetails(value); return *this;}
54
56
62 inline long long GetDecisionTaskCompletedEventId() const{ return m_decisionTaskCompletedEventId; }
63 inline bool DecisionTaskCompletedEventIdHasBeenSet() const { return m_decisionTaskCompletedEventIdHasBeenSet; }
64 inline void SetDecisionTaskCompletedEventId(long long value) { m_decisionTaskCompletedEventIdHasBeenSet = true; m_decisionTaskCompletedEventId = value; }
67 private:
68
69 Aws::String m_details;
70 bool m_detailsHasBeenSet = false;
71
72 long long m_decisionTaskCompletedEventId;
73 bool m_decisionTaskCompletedEventIdHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace SWF
78} // namespace Aws
AWS_SWF_API WorkflowExecutionCanceledEventAttributes(Aws::Utils::Json::JsonView jsonValue)
WorkflowExecutionCanceledEventAttributes & WithDetails(const Aws::String &value)
WorkflowExecutionCanceledEventAttributes & WithDetails(Aws::String &&value)
AWS_SWF_API WorkflowExecutionCanceledEventAttributes & operator=(Aws::Utils::Json::JsonView jsonValue)
WorkflowExecutionCanceledEventAttributes & WithDetails(const char *value)
WorkflowExecutionCanceledEventAttributes & WithDecisionTaskCompletedEventId(long long value)
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