/** * 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 { /** *

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

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

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