AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
LogsBackupConfiguration.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/observabilityadmin/ObservabilityAdmin_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace ObservabilityAdmin {
20namespace Model {
21
29 public:
30 AWS_OBSERVABILITYADMIN_API LogsBackupConfiguration() = default;
31 AWS_OBSERVABILITYADMIN_API LogsBackupConfiguration(Aws::Utils::Json::JsonView jsonValue);
32 AWS_OBSERVABILITYADMIN_API LogsBackupConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_OBSERVABILITYADMIN_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
40 inline const Aws::String& GetRegion() const { return m_region; }
41 inline bool RegionHasBeenSet() const { return m_regionHasBeenSet; }
42 template <typename RegionT = Aws::String>
43 void SetRegion(RegionT&& value) {
44 m_regionHasBeenSet = true;
45 m_region = std::forward<RegionT>(value);
46 }
47 template <typename RegionT = Aws::String>
49 SetRegion(std::forward<RegionT>(value));
50 return *this;
51 }
53
55
59 inline const Aws::String& GetKmsKeyArn() const { return m_kmsKeyArn; }
60 inline bool KmsKeyArnHasBeenSet() const { return m_kmsKeyArnHasBeenSet; }
61 template <typename KmsKeyArnT = Aws::String>
62 void SetKmsKeyArn(KmsKeyArnT&& value) {
63 m_kmsKeyArnHasBeenSet = true;
64 m_kmsKeyArn = std::forward<KmsKeyArnT>(value);
65 }
66 template <typename KmsKeyArnT = Aws::String>
68 SetKmsKeyArn(std::forward<KmsKeyArnT>(value));
69 return *this;
70 }
72 private:
73 Aws::String m_region;
74
75 Aws::String m_kmsKeyArn;
76 bool m_regionHasBeenSet = false;
77 bool m_kmsKeyArnHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace ObservabilityAdmin
82} // namespace Aws
AWS_OBSERVABILITYADMIN_API Aws::Utils::Json::JsonValue Jsonize() const
LogsBackupConfiguration & WithRegion(RegionT &&value)
AWS_OBSERVABILITYADMIN_API LogsBackupConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_OBSERVABILITYADMIN_API LogsBackupConfiguration()=default
AWS_OBSERVABILITYADMIN_API LogsBackupConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
LogsBackupConfiguration & WithKmsKeyArn(KmsKeyArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue