AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
AccountStatus.h
1
6#pragma once
7#include <aws/networkmanager/NetworkManager_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 NetworkManager
22{
23namespace Model
24{
25
34 {
35 public:
36 AWS_NETWORKMANAGER_API AccountStatus() = default;
37 AWS_NETWORKMANAGER_API AccountStatus(Aws::Utils::Json::JsonView jsonValue);
38 AWS_NETWORKMANAGER_API AccountStatus& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_NETWORKMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetAccountId() const { return m_accountId; }
47 inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
48 template<typename AccountIdT = Aws::String>
49 void SetAccountId(AccountIdT&& value) { m_accountIdHasBeenSet = true; m_accountId = std::forward<AccountIdT>(value); }
50 template<typename AccountIdT = Aws::String>
51 AccountStatus& WithAccountId(AccountIdT&& value) { SetAccountId(std::forward<AccountIdT>(value)); return *this;}
53
55
58 inline const Aws::String& GetSLRDeploymentStatus() const { return m_sLRDeploymentStatus; }
59 inline bool SLRDeploymentStatusHasBeenSet() const { return m_sLRDeploymentStatusHasBeenSet; }
60 template<typename SLRDeploymentStatusT = Aws::String>
61 void SetSLRDeploymentStatus(SLRDeploymentStatusT&& value) { m_sLRDeploymentStatusHasBeenSet = true; m_sLRDeploymentStatus = std::forward<SLRDeploymentStatusT>(value); }
62 template<typename SLRDeploymentStatusT = Aws::String>
63 AccountStatus& WithSLRDeploymentStatus(SLRDeploymentStatusT&& value) { SetSLRDeploymentStatus(std::forward<SLRDeploymentStatusT>(value)); return *this;}
65 private:
66
67 Aws::String m_accountId;
68 bool m_accountIdHasBeenSet = false;
69
70 Aws::String m_sLRDeploymentStatus;
71 bool m_sLRDeploymentStatusHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace NetworkManager
76} // namespace Aws
AccountStatus & WithAccountId(AccountIdT &&value)
AWS_NETWORKMANAGER_API AccountStatus()=default
const Aws::String & GetAccountId() const
AWS_NETWORKMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const
AccountStatus & WithSLRDeploymentStatus(SLRDeploymentStatusT &&value)
AWS_NETWORKMANAGER_API AccountStatus(Aws::Utils::Json::JsonView jsonValue)
void SetSLRDeploymentStatus(SLRDeploymentStatusT &&value)
AWS_NETWORKMANAGER_API AccountStatus & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetSLRDeploymentStatus() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue