/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains details about a Map Run that was started during a state machine
* execution.See Also:
AWS
* API Reference
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