/** * 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 Batch { namespace Model { /** *

An object that contains the properties for the Kubernetes resources of a * job.

See Also:

AWS * API Reference

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

The properties for the Kubernetes pod resources of a job.

*/ inline const EksPodProperties& GetPodProperties() const{ return m_podProperties; } /** *

The properties for the Kubernetes pod resources of a job.

*/ inline bool PodPropertiesHasBeenSet() const { return m_podPropertiesHasBeenSet; } /** *

The properties for the Kubernetes pod resources of a job.

*/ inline void SetPodProperties(const EksPodProperties& value) { m_podPropertiesHasBeenSet = true; m_podProperties = value; } /** *

The properties for the Kubernetes pod resources of a job.

*/ inline void SetPodProperties(EksPodProperties&& value) { m_podPropertiesHasBeenSet = true; m_podProperties = std::move(value); } /** *

The properties for the Kubernetes pod resources of a job.

*/ inline EksProperties& WithPodProperties(const EksPodProperties& value) { SetPodProperties(value); return *this;} /** *

The properties for the Kubernetes pod resources of a job.

*/ inline EksProperties& WithPodProperties(EksPodProperties&& value) { SetPodProperties(std::move(value)); return *this;} private: EksPodProperties m_podProperties; bool m_podPropertiesHasBeenSet = false; }; } // namespace Model } // namespace Batch } // namespace Aws