/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The order in which compute environments are tried for job placement within a
* queue. Compute environments are tried in ascending order. For example, if two
* compute environments are associated with a job queue, the compute environment
* with a lower order integer value is tried for job placement first.See
* Also:
AWS
* API Reference
The order of the compute environment.
*/ inline int GetOrder() const{ return m_order; } /** *The order of the compute environment.
*/ inline bool OrderHasBeenSet() const { return m_orderHasBeenSet; } /** *The order of the compute environment.
*/ inline void SetOrder(int value) { m_orderHasBeenSet = true; m_order = value; } /** *The order of the compute environment.
*/ inline ComputeEnvironmentOrder& WithOrder(int value) { SetOrder(value); return *this;} /** *The Amazon Resource Name (ARN) of the compute environment.
*/ inline const Aws::String& GetComputeEnvironment() const{ return m_computeEnvironment; } /** *The Amazon Resource Name (ARN) of the compute environment.
*/ inline bool ComputeEnvironmentHasBeenSet() const { return m_computeEnvironmentHasBeenSet; } /** *The Amazon Resource Name (ARN) of the compute environment.
*/ inline void SetComputeEnvironment(const Aws::String& value) { m_computeEnvironmentHasBeenSet = true; m_computeEnvironment = value; } /** *The Amazon Resource Name (ARN) of the compute environment.
*/ inline void SetComputeEnvironment(Aws::String&& value) { m_computeEnvironmentHasBeenSet = true; m_computeEnvironment = std::move(value); } /** *The Amazon Resource Name (ARN) of the compute environment.
*/ inline void SetComputeEnvironment(const char* value) { m_computeEnvironmentHasBeenSet = true; m_computeEnvironment.assign(value); } /** *The Amazon Resource Name (ARN) of the compute environment.
*/ inline ComputeEnvironmentOrder& WithComputeEnvironment(const Aws::String& value) { SetComputeEnvironment(value); return *this;} /** *The Amazon Resource Name (ARN) of the compute environment.
*/ inline ComputeEnvironmentOrder& WithComputeEnvironment(Aws::String&& value) { SetComputeEnvironment(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the compute environment.
*/ inline ComputeEnvironmentOrder& WithComputeEnvironment(const char* value) { SetComputeEnvironment(value); return *this;} private: int m_order; bool m_orderHasBeenSet; Aws::String m_computeEnvironment; bool m_computeEnvironmentHasBeenSet; }; } // namespace Model } // namespace Batch } // namespace Aws