/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains details about a specific Map Run.See Also:
AWS
* API Reference
The executionArn
of the execution from which the Map Run was
* started.
The executionArn
of the execution from which the Map Run was
* started.
The executionArn
of the execution from which the Map Run was
* started.
The executionArn
of the execution from which the Map Run was
* started.
The executionArn
of the execution from which the Map Run was
* started.
The executionArn
of the execution from which the Map Run was
* started.
The executionArn
of the execution from which the Map Run was
* started.
The executionArn
of the execution from which the Map Run was
* started.
The Amazon Resource Name (ARN) of the Map Run.
*/ inline const Aws::String& GetMapRunArn() const{ return m_mapRunArn; } /** *The Amazon Resource Name (ARN) of the Map Run.
*/ inline bool MapRunArnHasBeenSet() const { return m_mapRunArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the Map Run.
*/ inline void SetMapRunArn(const Aws::String& value) { m_mapRunArnHasBeenSet = true; m_mapRunArn = value; } /** *The Amazon Resource Name (ARN) of the Map Run.
*/ inline void SetMapRunArn(Aws::String&& value) { m_mapRunArnHasBeenSet = true; m_mapRunArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the Map Run.
*/ inline void SetMapRunArn(const char* value) { m_mapRunArnHasBeenSet = true; m_mapRunArn.assign(value); } /** *The Amazon Resource Name (ARN) of the Map Run.
*/ inline MapRunListItem& WithMapRunArn(const Aws::String& value) { SetMapRunArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the Map Run.
*/ inline MapRunListItem& WithMapRunArn(Aws::String&& value) { SetMapRunArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the Map Run.
*/ inline MapRunListItem& WithMapRunArn(const char* value) { SetMapRunArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the executed state machine.
*/ inline const Aws::String& GetStateMachineArn() const{ return m_stateMachineArn; } /** *The Amazon Resource Name (ARN) of the executed state machine.
*/ inline bool StateMachineArnHasBeenSet() const { return m_stateMachineArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the executed state machine.
*/ inline void SetStateMachineArn(const Aws::String& value) { m_stateMachineArnHasBeenSet = true; m_stateMachineArn = value; } /** *The Amazon Resource Name (ARN) of the executed state machine.
*/ inline void SetStateMachineArn(Aws::String&& value) { m_stateMachineArnHasBeenSet = true; m_stateMachineArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the executed state machine.
*/ inline void SetStateMachineArn(const char* value) { m_stateMachineArnHasBeenSet = true; m_stateMachineArn.assign(value); } /** *The Amazon Resource Name (ARN) of the executed state machine.
*/ inline MapRunListItem& WithStateMachineArn(const Aws::String& value) { SetStateMachineArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the executed state machine.
*/ inline MapRunListItem& WithStateMachineArn(Aws::String&& value) { SetStateMachineArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the executed state machine.
*/ inline MapRunListItem& WithStateMachineArn(const char* value) { SetStateMachineArn(value); return *this;} /** *The date on which the Map Run started.
*/ inline const Aws::Utils::DateTime& GetStartDate() const{ return m_startDate; } /** *The date on which the Map Run started.
*/ inline bool StartDateHasBeenSet() const { return m_startDateHasBeenSet; } /** *The date on which the Map Run started.
*/ inline void SetStartDate(const Aws::Utils::DateTime& value) { m_startDateHasBeenSet = true; m_startDate = value; } /** *The date on which the Map Run started.
*/ inline void SetStartDate(Aws::Utils::DateTime&& value) { m_startDateHasBeenSet = true; m_startDate = std::move(value); } /** *The date on which the Map Run started.
*/ inline MapRunListItem& WithStartDate(const Aws::Utils::DateTime& value) { SetStartDate(value); return *this;} /** *The date on which the Map Run started.
*/ inline MapRunListItem& WithStartDate(Aws::Utils::DateTime&& value) { SetStartDate(std::move(value)); return *this;} /** *The date on which the Map Run stopped.
*/ inline const Aws::Utils::DateTime& GetStopDate() const{ return m_stopDate; } /** *The date on which the Map Run stopped.
*/ inline bool StopDateHasBeenSet() const { return m_stopDateHasBeenSet; } /** *The date on which the Map Run stopped.
*/ inline void SetStopDate(const Aws::Utils::DateTime& value) { m_stopDateHasBeenSet = true; m_stopDate = value; } /** *The date on which the Map Run stopped.
*/ inline void SetStopDate(Aws::Utils::DateTime&& value) { m_stopDateHasBeenSet = true; m_stopDate = std::move(value); } /** *The date on which the Map Run stopped.
*/ inline MapRunListItem& WithStopDate(const Aws::Utils::DateTime& value) { SetStopDate(value); return *this;} /** *The date on which the Map Run stopped.
*/ inline MapRunListItem& WithStopDate(Aws::Utils::DateTime&& value) { SetStopDate(std::move(value)); return *this;} private: Aws::String m_executionArn; bool m_executionArnHasBeenSet = false; Aws::String m_mapRunArn; bool m_mapRunArnHasBeenSet = false; Aws::String m_stateMachineArn; bool m_stateMachineArnHasBeenSet = false; Aws::Utils::DateTime m_startDate; bool m_startDateHasBeenSet = false; Aws::Utils::DateTime m_stopDate; bool m_stopDateHasBeenSet = false; }; } // namespace Model } // namespace SFN } // namespace Aws