/**
* 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 execution input or output.
See Also:
* AWS
* API Reference
*/
class CloudWatchEventsExecutionDataDetails
{
public:
AWS_SFN_API CloudWatchEventsExecutionDataDetails();
AWS_SFN_API CloudWatchEventsExecutionDataDetails(Aws::Utils::Json::JsonView jsonValue);
AWS_SFN_API CloudWatchEventsExecutionDataDetails& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_SFN_API Aws::Utils::Json::JsonValue Jsonize() const;
/**
* Indicates whether input or output was included in the response. Always
* true
for API calls.
*/
inline bool GetIncluded() const{ return m_included; }
/**
* Indicates whether input or output was included in the response. Always
* true
for API calls.
*/
inline bool IncludedHasBeenSet() const { return m_includedHasBeenSet; }
/**
* Indicates whether input or output was included in the response. Always
* true
for API calls.
*/
inline void SetIncluded(bool value) { m_includedHasBeenSet = true; m_included = value; }
/**
* Indicates whether input or output was included in the response. Always
* true
for API calls.
*/
inline CloudWatchEventsExecutionDataDetails& WithIncluded(bool value) { SetIncluded(value); return *this;}
private:
bool m_included;
bool m_includedHasBeenSet = false;
};
} // namespace Model
} // namespace SFN
} // namespace Aws