/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The information about the Amazon EKS cluster.See Also:
AWS
* API Reference
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