/** * 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 QuickSight { namespace Model { /** *

The refresh properties of a dataset.

See Also:

AWS * API Reference

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

The refresh configuration for a dataset.

*/ inline const RefreshConfiguration& GetRefreshConfiguration() const{ return m_refreshConfiguration; } /** *

The refresh configuration for a dataset.

*/ inline bool RefreshConfigurationHasBeenSet() const { return m_refreshConfigurationHasBeenSet; } /** *

The refresh configuration for a dataset.

*/ inline void SetRefreshConfiguration(const RefreshConfiguration& value) { m_refreshConfigurationHasBeenSet = true; m_refreshConfiguration = value; } /** *

The refresh configuration for a dataset.

*/ inline void SetRefreshConfiguration(RefreshConfiguration&& value) { m_refreshConfigurationHasBeenSet = true; m_refreshConfiguration = std::move(value); } /** *

The refresh configuration for a dataset.

*/ inline DataSetRefreshProperties& WithRefreshConfiguration(const RefreshConfiguration& value) { SetRefreshConfiguration(value); return *this;} /** *

The refresh configuration for a dataset.

*/ inline DataSetRefreshProperties& WithRefreshConfiguration(RefreshConfiguration&& value) { SetRefreshConfiguration(std::move(value)); return *this;} private: RefreshConfiguration m_refreshConfiguration; bool m_refreshConfigurationHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws