/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SFN { namespace Model { /** *

Details about a Map state that was started.

See Also:

AWS * API Reference

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

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