/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace IoTAnalytics { namespace Model { class AWS_IOTANALYTICS_API CreateDatasetContentResult { public: CreateDatasetContentResult(); CreateDatasetContentResult(const Aws::AmazonWebServiceResult& result); CreateDatasetContentResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The version ID of the data set contents which are being created.

*/ inline const Aws::String& GetVersionId() const{ return m_versionId; } /** *

The version ID of the data set contents which are being created.

*/ inline void SetVersionId(const Aws::String& value) { m_versionId = value; } /** *

The version ID of the data set contents which are being created.

*/ inline void SetVersionId(Aws::String&& value) { m_versionId = std::move(value); } /** *

The version ID of the data set contents which are being created.

*/ inline void SetVersionId(const char* value) { m_versionId.assign(value); } /** *

The version ID of the data set contents which are being created.

*/ inline CreateDatasetContentResult& WithVersionId(const Aws::String& value) { SetVersionId(value); return *this;} /** *

The version ID of the data set contents which are being created.

*/ inline CreateDatasetContentResult& WithVersionId(Aws::String&& value) { SetVersionId(std::move(value)); return *this;} /** *

The version ID of the data set contents which are being created.

*/ inline CreateDatasetContentResult& WithVersionId(const char* value) { SetVersionId(value); return *this;} private: Aws::String m_versionId; }; } // namespace Model } // namespace IoTAnalytics } // namespace Aws