/** * 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 the successful termination of the * execution.

See Also:

AWS * API Reference

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

The JSON data output by the execution.

*/ inline const Aws::String& GetOutput() const{ return m_output; } /** *

The JSON data output by the execution.

*/ inline bool OutputHasBeenSet() const { return m_outputHasBeenSet; } /** *

The JSON data output by the execution.

*/ inline void SetOutput(const Aws::String& value) { m_outputHasBeenSet = true; m_output = value; } /** *

The JSON data output by the execution.

*/ inline void SetOutput(Aws::String&& value) { m_outputHasBeenSet = true; m_output = std::move(value); } /** *

The JSON data output by the execution.

*/ inline void SetOutput(const char* value) { m_outputHasBeenSet = true; m_output.assign(value); } /** *

The JSON data output by the execution.

*/ inline ExecutionSucceededEventDetails& WithOutput(const Aws::String& value) { SetOutput(value); return *this;} /** *

The JSON data output by the execution.

*/ inline ExecutionSucceededEventDetails& WithOutput(Aws::String&& value) { SetOutput(std::move(value)); return *this;} /** *

The JSON data output by the execution.

*/ inline ExecutionSucceededEventDetails& WithOutput(const char* value) { SetOutput(value); return *this;} private: Aws::String m_output; bool m_outputHasBeenSet; }; } // namespace Model } // namespace SFN } // namespace Aws