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

The input properties for the preloaded data store. Only data preloaded from * Synthea is supported.

See Also:

AWS * API Reference

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

The type of preloaded data. Only Synthea preloaded data is supported.

*/ inline const PreloadDataType& GetPreloadDataType() const{ return m_preloadDataType; } /** *

The type of preloaded data. Only Synthea preloaded data is supported.

*/ inline bool PreloadDataTypeHasBeenSet() const { return m_preloadDataTypeHasBeenSet; } /** *

The type of preloaded data. Only Synthea preloaded data is supported.

*/ inline void SetPreloadDataType(const PreloadDataType& value) { m_preloadDataTypeHasBeenSet = true; m_preloadDataType = value; } /** *

The type of preloaded data. Only Synthea preloaded data is supported.

*/ inline void SetPreloadDataType(PreloadDataType&& value) { m_preloadDataTypeHasBeenSet = true; m_preloadDataType = std::move(value); } /** *

The type of preloaded data. Only Synthea preloaded data is supported.

*/ inline PreloadDataConfig& WithPreloadDataType(const PreloadDataType& value) { SetPreloadDataType(value); return *this;} /** *

The type of preloaded data. Only Synthea preloaded data is supported.

*/ inline PreloadDataConfig& WithPreloadDataType(PreloadDataType&& value) { SetPreloadDataType(std::move(value)); return *this;} private: PreloadDataType m_preloadDataType; bool m_preloadDataTypeHasBeenSet = false; }; } // namespace Model } // namespace HealthLake } // namespace Aws