This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-iotanalytics/include/aws/iotanalytics/model/DatasetActionSummary.h

139 lines
4.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/iotanalytics/IoTAnalytics_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/iotanalytics/model/DatasetActionType.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace IoTAnalytics
{
namespace Model
{
/**
* <p>Information about the action which automatically creates the data set's
* contents.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/iotanalytics-2017-11-27/DatasetActionSummary">AWS
* API Reference</a></p>
*/
class AWS_IOTANALYTICS_API DatasetActionSummary
{
public:
DatasetActionSummary();
DatasetActionSummary(Aws::Utils::Json::JsonView jsonValue);
DatasetActionSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The name of the action which automatically creates the data set's
* contents.</p>
*/
inline const Aws::String& GetActionName() const{ return m_actionName; }
/**
* <p>The name of the action which automatically creates the data set's
* contents.</p>
*/
inline bool ActionNameHasBeenSet() const { return m_actionNameHasBeenSet; }
/**
* <p>The name of the action which automatically creates the data set's
* contents.</p>
*/
inline void SetActionName(const Aws::String& value) { m_actionNameHasBeenSet = true; m_actionName = value; }
/**
* <p>The name of the action which automatically creates the data set's
* contents.</p>
*/
inline void SetActionName(Aws::String&& value) { m_actionNameHasBeenSet = true; m_actionName = std::move(value); }
/**
* <p>The name of the action which automatically creates the data set's
* contents.</p>
*/
inline void SetActionName(const char* value) { m_actionNameHasBeenSet = true; m_actionName.assign(value); }
/**
* <p>The name of the action which automatically creates the data set's
* contents.</p>
*/
inline DatasetActionSummary& WithActionName(const Aws::String& value) { SetActionName(value); return *this;}
/**
* <p>The name of the action which automatically creates the data set's
* contents.</p>
*/
inline DatasetActionSummary& WithActionName(Aws::String&& value) { SetActionName(std::move(value)); return *this;}
/**
* <p>The name of the action which automatically creates the data set's
* contents.</p>
*/
inline DatasetActionSummary& WithActionName(const char* value) { SetActionName(value); return *this;}
/**
* <p>The type of action by which the data set's contents are automatically
* created.</p>
*/
inline const DatasetActionType& GetActionType() const{ return m_actionType; }
/**
* <p>The type of action by which the data set's contents are automatically
* created.</p>
*/
inline bool ActionTypeHasBeenSet() const { return m_actionTypeHasBeenSet; }
/**
* <p>The type of action by which the data set's contents are automatically
* created.</p>
*/
inline void SetActionType(const DatasetActionType& value) { m_actionTypeHasBeenSet = true; m_actionType = value; }
/**
* <p>The type of action by which the data set's contents are automatically
* created.</p>
*/
inline void SetActionType(DatasetActionType&& value) { m_actionTypeHasBeenSet = true; m_actionType = std::move(value); }
/**
* <p>The type of action by which the data set's contents are automatically
* created.</p>
*/
inline DatasetActionSummary& WithActionType(const DatasetActionType& value) { SetActionType(value); return *this;}
/**
* <p>The type of action by which the data set's contents are automatically
* created.</p>
*/
inline DatasetActionSummary& WithActionType(DatasetActionType&& value) { SetActionType(std::move(value)); return *this;}
private:
Aws::String m_actionName;
bool m_actionNameHasBeenSet;
DatasetActionType m_actionType;
bool m_actionTypeHasBeenSet;
};
} // namespace Model
} // namespace IoTAnalytics
} // namespace Aws