/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details about a Map state that was started.See Also:
AWS
* API Reference
The size of the array for Map state iterations.
*/ inline int GetLength() const{ return m_length; } /** *The size of the array for Map state iterations.
*/ inline bool LengthHasBeenSet() const { return m_lengthHasBeenSet; } /** *The size of the array for Map state iterations.
*/ inline void SetLength(int value) { m_lengthHasBeenSet = true; m_length = value; } /** *The size of the array for Map state iterations.
*/ inline MapStateStartedEventDetails& WithLength(int value) { SetLength(value); return *this;} private: int m_length; bool m_lengthHasBeenSet = false; }; } // namespace Model } // namespace SFN } // namespace Aws