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

Provides information about the data schema used with the given dataset. *

See Also:

AWS * API Reference

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

*/ inline const Aws::String& GetInlineDataSchema() const{ return m_inlineDataSchema; } /** *

*/ inline bool InlineDataSchemaHasBeenSet() const { return m_inlineDataSchemaHasBeenSet; } /** *

*/ inline void SetInlineDataSchema(const Aws::String& value) { m_inlineDataSchemaHasBeenSet = true; m_inlineDataSchema = value; } /** *

*/ inline void SetInlineDataSchema(Aws::String&& value) { m_inlineDataSchemaHasBeenSet = true; m_inlineDataSchema = std::move(value); } /** *

*/ inline void SetInlineDataSchema(const char* value) { m_inlineDataSchemaHasBeenSet = true; m_inlineDataSchema.assign(value); } /** *

*/ inline DatasetSchema& WithInlineDataSchema(const Aws::String& value) { SetInlineDataSchema(value); return *this;} /** *

*/ inline DatasetSchema& WithInlineDataSchema(Aws::String&& value) { SetInlineDataSchema(std::move(value)); return *this;} /** *

*/ inline DatasetSchema& WithInlineDataSchema(const char* value) { SetInlineDataSchema(value); return *this;} private: Aws::String m_inlineDataSchema; bool m_inlineDataSchemaHasBeenSet = false; }; } // namespace Model } // namespace LookoutEquipment } // namespace Aws