/** * 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 SFN { namespace Model { /** *

Contains details about a Map Run that was started during a state machine * execution.

See Also:

AWS * API Reference

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

The Amazon Resource Name (ARN) of a Map Run that was started.

*/ inline const Aws::String& GetMapRunArn() const{ return m_mapRunArn; } /** *

The Amazon Resource Name (ARN) of a Map Run that was started.

*/ inline bool MapRunArnHasBeenSet() const { return m_mapRunArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of a Map Run that was started.

*/ inline void SetMapRunArn(const Aws::String& value) { m_mapRunArnHasBeenSet = true; m_mapRunArn = value; } /** *

The Amazon Resource Name (ARN) of a Map Run that was started.

*/ inline void SetMapRunArn(Aws::String&& value) { m_mapRunArnHasBeenSet = true; m_mapRunArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of a Map Run that was started.

*/ inline void SetMapRunArn(const char* value) { m_mapRunArnHasBeenSet = true; m_mapRunArn.assign(value); } /** *

The Amazon Resource Name (ARN) of a Map Run that was started.

*/ inline MapRunStartedEventDetails& WithMapRunArn(const Aws::String& value) { SetMapRunArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of a Map Run that was started.

*/ inline MapRunStartedEventDetails& WithMapRunArn(Aws::String&& value) { SetMapRunArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of a Map Run that was started.

*/ inline MapRunStartedEventDetails& WithMapRunArn(const char* value) { SetMapRunArn(value); return *this;} private: Aws::String m_mapRunArn; bool m_mapRunArnHasBeenSet = false; }; } // namespace Model } // namespace SFN } // namespace Aws