/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that contains the properties for the Kubernetes resources of a
* job.See Also:
AWS
* API Reference
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