/**
* 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 EntityResolution
{
namespace Model
{
/**
* An object which defines an incremental run type and has only
* incrementalRunType
as a field.
See Also:
AWS
* API Reference
*/
class IncrementalRunConfig
{
public:
AWS_ENTITYRESOLUTION_API IncrementalRunConfig();
AWS_ENTITYRESOLUTION_API IncrementalRunConfig(Aws::Utils::Json::JsonView jsonValue);
AWS_ENTITYRESOLUTION_API IncrementalRunConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
/**
* The type of incremental run. It takes only one value:
* IMMEDIATE
.
*/
inline const IncrementalRunType& GetIncrementalRunType() const{ return m_incrementalRunType; }
/**
* The type of incremental run. It takes only one value:
* IMMEDIATE
.
*/
inline bool IncrementalRunTypeHasBeenSet() const { return m_incrementalRunTypeHasBeenSet; }
/**
* The type of incremental run. It takes only one value:
* IMMEDIATE
.
*/
inline void SetIncrementalRunType(const IncrementalRunType& value) { m_incrementalRunTypeHasBeenSet = true; m_incrementalRunType = value; }
/**
* The type of incremental run. It takes only one value:
* IMMEDIATE
.
*/
inline void SetIncrementalRunType(IncrementalRunType&& value) { m_incrementalRunTypeHasBeenSet = true; m_incrementalRunType = std::move(value); }
/**
* The type of incremental run. It takes only one value:
* IMMEDIATE
.
*/
inline IncrementalRunConfig& WithIncrementalRunType(const IncrementalRunType& value) { SetIncrementalRunType(value); return *this;}
/**
* The type of incremental run. It takes only one value:
* IMMEDIATE
.
*/
inline IncrementalRunConfig& WithIncrementalRunType(IncrementalRunType&& value) { SetIncrementalRunType(std::move(value)); return *this;}
private:
IncrementalRunType m_incrementalRunType;
bool m_incrementalRunTypeHasBeenSet = false;
};
} // namespace Model
} // namespace EntityResolution
} // namespace Aws