/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace EMRContainers { namespace Model { /** *

The information about the Amazon EKS cluster.

See Also:

AWS * API Reference

*/ class EksInfo { public: AWS_EMRCONTAINERS_API EksInfo(); AWS_EMRCONTAINERS_API EksInfo(Aws::Utils::Json::JsonView jsonValue); AWS_EMRCONTAINERS_API EksInfo& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_EMRCONTAINERS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The namespaces of the Amazon EKS cluster.

*/ inline const Aws::String& GetNamespace() const{ return m_namespace; } /** *

The namespaces of the Amazon EKS cluster.

*/ inline bool NamespaceHasBeenSet() const { return m_namespaceHasBeenSet; } /** *

The namespaces of the Amazon EKS cluster.

*/ inline void SetNamespace(const Aws::String& value) { m_namespaceHasBeenSet = true; m_namespace = value; } /** *

The namespaces of the Amazon EKS cluster.

*/ inline void SetNamespace(Aws::String&& value) { m_namespaceHasBeenSet = true; m_namespace = std::move(value); } /** *

The namespaces of the Amazon EKS cluster.

*/ inline void SetNamespace(const char* value) { m_namespaceHasBeenSet = true; m_namespace.assign(value); } /** *

The namespaces of the Amazon EKS cluster.

*/ inline EksInfo& WithNamespace(const Aws::String& value) { SetNamespace(value); return *this;} /** *

The namespaces of the Amazon EKS cluster.

*/ inline EksInfo& WithNamespace(Aws::String&& value) { SetNamespace(std::move(value)); return *this;} /** *

The namespaces of the Amazon EKS cluster.

*/ inline EksInfo& WithNamespace(const char* value) { SetNamespace(value); return *this;} private: Aws::String m_namespace; bool m_namespaceHasBeenSet = false; }; } // namespace Model } // namespace EMRContainers } // namespace Aws