AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
EksSourceClusterNamespace.h
1
6#pragma once
7#include <aws/resiliencehub/ResilienceHub_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 ResilienceHub
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_RESILIENCEHUB_API EksSourceClusterNamespace();
36 AWS_RESILIENCEHUB_API EksSourceClusterNamespace(Aws::Utils::Json::JsonView jsonValue);
38 AWS_RESILIENCEHUB_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
51 inline const Aws::String& GetEksClusterArn() const{ return m_eksClusterArn; }
52 inline bool EksClusterArnHasBeenSet() const { return m_eksClusterArnHasBeenSet; }
53 inline void SetEksClusterArn(const Aws::String& value) { m_eksClusterArnHasBeenSet = true; m_eksClusterArn = value; }
54 inline void SetEksClusterArn(Aws::String&& value) { m_eksClusterArnHasBeenSet = true; m_eksClusterArn = std::move(value); }
55 inline void SetEksClusterArn(const char* value) { m_eksClusterArnHasBeenSet = true; m_eksClusterArn.assign(value); }
56 inline EksSourceClusterNamespace& WithEksClusterArn(const Aws::String& value) { SetEksClusterArn(value); return *this;}
57 inline EksSourceClusterNamespace& WithEksClusterArn(Aws::String&& value) { SetEksClusterArn(std::move(value)); return *this;}
58 inline EksSourceClusterNamespace& WithEksClusterArn(const char* value) { SetEksClusterArn(value); return *this;}
60
62
66 inline const Aws::String& GetNamespace() const{ return m_namespace; }
67 inline bool NamespaceHasBeenSet() const { return m_namespaceHasBeenSet; }
68 inline void SetNamespace(const Aws::String& value) { m_namespaceHasBeenSet = true; m_namespace = value; }
69 inline void SetNamespace(Aws::String&& value) { m_namespaceHasBeenSet = true; m_namespace = std::move(value); }
70 inline void SetNamespace(const char* value) { m_namespaceHasBeenSet = true; m_namespace.assign(value); }
71 inline EksSourceClusterNamespace& WithNamespace(const Aws::String& value) { SetNamespace(value); return *this;}
72 inline EksSourceClusterNamespace& WithNamespace(Aws::String&& value) { SetNamespace(std::move(value)); return *this;}
73 inline EksSourceClusterNamespace& WithNamespace(const char* value) { SetNamespace(value); return *this;}
75 private:
76
77 Aws::String m_eksClusterArn;
78 bool m_eksClusterArnHasBeenSet = false;
79
80 Aws::String m_namespace;
81 bool m_namespaceHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace ResilienceHub
86} // namespace Aws
EksSourceClusterNamespace & WithEksClusterArn(const char *value)
AWS_RESILIENCEHUB_API EksSourceClusterNamespace(Aws::Utils::Json::JsonView jsonValue)
EksSourceClusterNamespace & WithEksClusterArn(const Aws::String &value)
EksSourceClusterNamespace & WithNamespace(const Aws::String &value)
EksSourceClusterNamespace & WithNamespace(Aws::String &&value)
AWS_RESILIENCEHUB_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_RESILIENCEHUB_API EksSourceClusterNamespace & operator=(Aws::Utils::Json::JsonView jsonValue)
EksSourceClusterNamespace & WithEksClusterArn(Aws::String &&value)
EksSourceClusterNamespace & WithNamespace(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue