/** * 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 { /** *

Provides details about input or output in an execution history * event.

See Also:

AWS * API Reference

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

Indicates whether input or output was truncated in the response. Always * false for API calls.

*/ inline bool GetTruncated() const{ return m_truncated; } /** *

Indicates whether input or output was truncated in the response. Always * false for API calls.

*/ inline bool TruncatedHasBeenSet() const { return m_truncatedHasBeenSet; } /** *

Indicates whether input or output was truncated in the response. Always * false for API calls.

*/ inline void SetTruncated(bool value) { m_truncatedHasBeenSet = true; m_truncated = value; } /** *

Indicates whether input or output was truncated in the response. Always * false for API calls.

*/ inline HistoryEventExecutionDataDetails& WithTruncated(bool value) { SetTruncated(value); return *this;} private: bool m_truncated; bool m_truncatedHasBeenSet = false; }; } // namespace Model } // namespace SFN } // namespace Aws