AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
CustomerAgreement.h
1
6#pragma once
7#include <aws/directconnect/DirectConnect_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 DirectConnect
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_DIRECTCONNECT_API CustomerAgreement() = default;
35 AWS_DIRECTCONNECT_API CustomerAgreement(Aws::Utils::Json::JsonView jsonValue);
36 AWS_DIRECTCONNECT_API CustomerAgreement& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_DIRECTCONNECT_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetAgreementName() const { return m_agreementName; }
45 inline bool AgreementNameHasBeenSet() const { return m_agreementNameHasBeenSet; }
46 template<typename AgreementNameT = Aws::String>
47 void SetAgreementName(AgreementNameT&& value) { m_agreementNameHasBeenSet = true; m_agreementName = std::forward<AgreementNameT>(value); }
48 template<typename AgreementNameT = Aws::String>
49 CustomerAgreement& WithAgreementName(AgreementNameT&& value) { SetAgreementName(std::forward<AgreementNameT>(value)); return *this;}
51
53
57 inline const Aws::String& GetStatus() const { return m_status; }
58 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
59 template<typename StatusT = Aws::String>
60 void SetStatus(StatusT&& value) { m_statusHasBeenSet = true; m_status = std::forward<StatusT>(value); }
61 template<typename StatusT = Aws::String>
62 CustomerAgreement& WithStatus(StatusT&& value) { SetStatus(std::forward<StatusT>(value)); return *this;}
64 private:
65
66 Aws::String m_agreementName;
67 bool m_agreementNameHasBeenSet = false;
68
69 Aws::String m_status;
70 bool m_statusHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace DirectConnect
75} // namespace Aws
AWS_DIRECTCONNECT_API Aws::Utils::Json::JsonValue Jsonize() const
CustomerAgreement & WithAgreementName(AgreementNameT &&value)
CustomerAgreement & WithStatus(StatusT &&value)
void SetAgreementName(AgreementNameT &&value)
AWS_DIRECTCONNECT_API CustomerAgreement()=default
AWS_DIRECTCONNECT_API CustomerAgreement(Aws::Utils::Json::JsonView jsonValue)
AWS_DIRECTCONNECT_API CustomerAgreement & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue