AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AvailabilityZone.h
1
6#pragma once
7#include <aws/lightsail/Lightsail_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 Lightsail
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_LIGHTSAIL_API AvailabilityZone();
36 AWS_LIGHTSAIL_API AvailabilityZone(Aws::Utils::Json::JsonView jsonValue);
38 AWS_LIGHTSAIL_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetZoneName() const{ return m_zoneName; }
47 inline bool ZoneNameHasBeenSet() const { return m_zoneNameHasBeenSet; }
48 inline void SetZoneName(const Aws::String& value) { m_zoneNameHasBeenSet = true; m_zoneName = value; }
49 inline void SetZoneName(Aws::String&& value) { m_zoneNameHasBeenSet = true; m_zoneName = std::move(value); }
50 inline void SetZoneName(const char* value) { m_zoneNameHasBeenSet = true; m_zoneName.assign(value); }
51 inline AvailabilityZone& WithZoneName(const Aws::String& value) { SetZoneName(value); return *this;}
52 inline AvailabilityZone& WithZoneName(Aws::String&& value) { SetZoneName(std::move(value)); return *this;}
53 inline AvailabilityZone& WithZoneName(const char* value) { SetZoneName(value); return *this;}
55
57
60 inline const Aws::String& GetState() const{ return m_state; }
61 inline bool StateHasBeenSet() const { return m_stateHasBeenSet; }
62 inline void SetState(const Aws::String& value) { m_stateHasBeenSet = true; m_state = value; }
63 inline void SetState(Aws::String&& value) { m_stateHasBeenSet = true; m_state = std::move(value); }
64 inline void SetState(const char* value) { m_stateHasBeenSet = true; m_state.assign(value); }
65 inline AvailabilityZone& WithState(const Aws::String& value) { SetState(value); return *this;}
66 inline AvailabilityZone& WithState(Aws::String&& value) { SetState(std::move(value)); return *this;}
67 inline AvailabilityZone& WithState(const char* value) { SetState(value); return *this;}
69 private:
70
71 Aws::String m_zoneName;
72 bool m_zoneNameHasBeenSet = false;
73
74 Aws::String m_state;
75 bool m_stateHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace Lightsail
80} // namespace Aws
const Aws::String & GetZoneName() const
AvailabilityZone & WithZoneName(const Aws::String &value)
void SetZoneName(const Aws::String &value)
void SetState(const Aws::String &value)
AvailabilityZone & WithState(Aws::String &&value)
const Aws::String & GetState() const
AvailabilityZone & WithZoneName(const char *value)
AvailabilityZone & WithState(const Aws::String &value)
AWS_LIGHTSAIL_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_LIGHTSAIL_API AvailabilityZone & operator=(Aws::Utils::Json::JsonView jsonValue)
AvailabilityZone & WithZoneName(Aws::String &&value)
AWS_LIGHTSAIL_API AvailabilityZone(Aws::Utils::Json::JsonView jsonValue)
AvailabilityZone & WithState(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue