AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AgentStatusSummary.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/connect/model/AgentStatusType.h>
10#include <aws/core/utils/DateTime.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace Connect
24{
25namespace Model
26{
27
34 {
35 public:
36 AWS_CONNECT_API AgentStatusSummary();
39 AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetId() const{ return m_id; }
47 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
48 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
49 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
50 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
51 inline AgentStatusSummary& WithId(const Aws::String& value) { SetId(value); return *this;}
52 inline AgentStatusSummary& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
53 inline AgentStatusSummary& WithId(const char* value) { SetId(value); return *this;}
55
57
60 inline const Aws::String& GetArn() const{ return m_arn; }
61 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
62 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
63 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
64 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
65 inline AgentStatusSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
66 inline AgentStatusSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
67 inline AgentStatusSummary& WithArn(const char* value) { SetArn(value); return *this;}
69
71
74 inline const Aws::String& GetName() const{ return m_name; }
75 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
76 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
77 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
78 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
79 inline AgentStatusSummary& WithName(const Aws::String& value) { SetName(value); return *this;}
80 inline AgentStatusSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
81 inline AgentStatusSummary& WithName(const char* value) { SetName(value); return *this;}
83
85
88 inline const AgentStatusType& GetType() const{ return m_type; }
89 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
90 inline void SetType(const AgentStatusType& value) { m_typeHasBeenSet = true; m_type = value; }
91 inline void SetType(AgentStatusType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
92 inline AgentStatusSummary& WithType(const AgentStatusType& value) { SetType(value); return *this;}
93 inline AgentStatusSummary& WithType(AgentStatusType&& value) { SetType(std::move(value)); return *this;}
95
97
100 inline const Aws::Utils::DateTime& GetLastModifiedTime() const{ return m_lastModifiedTime; }
101 inline bool LastModifiedTimeHasBeenSet() const { return m_lastModifiedTimeHasBeenSet; }
102 inline void SetLastModifiedTime(const Aws::Utils::DateTime& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = value; }
103 inline void SetLastModifiedTime(Aws::Utils::DateTime&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::move(value); }
105 inline AgentStatusSummary& WithLastModifiedTime(Aws::Utils::DateTime&& value) { SetLastModifiedTime(std::move(value)); return *this;}
107
109
112 inline const Aws::String& GetLastModifiedRegion() const{ return m_lastModifiedRegion; }
113 inline bool LastModifiedRegionHasBeenSet() const { return m_lastModifiedRegionHasBeenSet; }
114 inline void SetLastModifiedRegion(const Aws::String& value) { m_lastModifiedRegionHasBeenSet = true; m_lastModifiedRegion = value; }
115 inline void SetLastModifiedRegion(Aws::String&& value) { m_lastModifiedRegionHasBeenSet = true; m_lastModifiedRegion = std::move(value); }
116 inline void SetLastModifiedRegion(const char* value) { m_lastModifiedRegionHasBeenSet = true; m_lastModifiedRegion.assign(value); }
117 inline AgentStatusSummary& WithLastModifiedRegion(const Aws::String& value) { SetLastModifiedRegion(value); return *this;}
118 inline AgentStatusSummary& WithLastModifiedRegion(Aws::String&& value) { SetLastModifiedRegion(std::move(value)); return *this;}
119 inline AgentStatusSummary& WithLastModifiedRegion(const char* value) { SetLastModifiedRegion(value); return *this;}
121 private:
122
123 Aws::String m_id;
124 bool m_idHasBeenSet = false;
125
126 Aws::String m_arn;
127 bool m_arnHasBeenSet = false;
128
129 Aws::String m_name;
130 bool m_nameHasBeenSet = false;
131
132 AgentStatusType m_type;
133 bool m_typeHasBeenSet = false;
134
135 Aws::Utils::DateTime m_lastModifiedTime;
136 bool m_lastModifiedTimeHasBeenSet = false;
137
138 Aws::String m_lastModifiedRegion;
139 bool m_lastModifiedRegionHasBeenSet = false;
140 };
141
142} // namespace Model
143} // namespace Connect
144} // namespace Aws
void SetType(AgentStatusType &&value)
AgentStatusSummary & WithLastModifiedRegion(const Aws::String &value)
AWS_CONNECT_API AgentStatusSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
AgentStatusSummary & WithLastModifiedTime(const Aws::Utils::DateTime &value)
const AgentStatusType & GetType() const
void SetLastModifiedTime(const Aws::Utils::DateTime &value)
void SetId(const Aws::String &value)
AgentStatusSummary & WithLastModifiedTime(Aws::Utils::DateTime &&value)
AgentStatusSummary & WithArn(const char *value)
AgentStatusSummary & WithId(const char *value)
AgentStatusSummary & WithName(const char *value)
AgentStatusSummary & WithArn(const Aws::String &value)
const Aws::Utils::DateTime & GetLastModifiedTime() const
AWS_CONNECT_API AgentStatusSummary(Aws::Utils::Json::JsonView jsonValue)
AgentStatusSummary & WithType(AgentStatusType &&value)
void SetLastModifiedRegion(Aws::String &&value)
void SetType(const AgentStatusType &value)
const Aws::String & GetLastModifiedRegion() const
AgentStatusSummary & WithId(const Aws::String &value)
AgentStatusSummary & WithType(const AgentStatusType &value)
void SetLastModifiedTime(Aws::Utils::DateTime &&value)
AgentStatusSummary & WithName(Aws::String &&value)
AgentStatusSummary & WithArn(Aws::String &&value)
AgentStatusSummary & WithLastModifiedRegion(const char *value)
AgentStatusSummary & WithName(const Aws::String &value)
void SetName(const Aws::String &value)
void SetLastModifiedRegion(const Aws::String &value)
AgentStatusSummary & WithLastModifiedRegion(Aws::String &&value)
void SetArn(const Aws::String &value)
AgentStatusSummary & WithId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue