/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that represents an Batch array job.See Also:
AWS
* API Reference
The size of the array job.
*/ inline int GetSize() const{ return m_size; } /** *The size of the array job.
*/ inline bool SizeHasBeenSet() const { return m_sizeHasBeenSet; } /** *The size of the array job.
*/ inline void SetSize(int value) { m_sizeHasBeenSet = true; m_size = value; } /** *The size of the array job.
*/ inline ArrayProperties& WithSize(int value) { SetSize(value); return *this;} private: int m_size; bool m_sizeHasBeenSet = false; }; } // namespace Model } // namespace Batch } // namespace Aws