/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The refresh properties of a dataset.See Also:
AWS
* API Reference
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