/** * 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 IoTThingsGraph { namespace Model { class AWS_IOTTHINGSGRAPH_API UploadEntityDefinitionsResult { public: UploadEntityDefinitionsResult(); UploadEntityDefinitionsResult(const Aws::AmazonWebServiceResult& result); UploadEntityDefinitionsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID that specifies the upload action. You can use this to track the status * of the upload.

*/ inline const Aws::String& GetUploadId() const{ return m_uploadId; } /** *

The ID that specifies the upload action. You can use this to track the status * of the upload.

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

The ID that specifies the upload action. You can use this to track the status * of the upload.

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

The ID that specifies the upload action. You can use this to track the status * of the upload.

*/ inline void SetUploadId(const char* value) { m_uploadId.assign(value); } /** *

The ID that specifies the upload action. You can use this to track the status * of the upload.

*/ inline UploadEntityDefinitionsResult& WithUploadId(const Aws::String& value) { SetUploadId(value); return *this;} /** *

The ID that specifies the upload action. You can use this to track the status * of the upload.

*/ inline UploadEntityDefinitionsResult& WithUploadId(Aws::String&& value) { SetUploadId(std::move(value)); return *this;} /** *

The ID that specifies the upload action. You can use this to track the status * of the upload.

*/ inline UploadEntityDefinitionsResult& WithUploadId(const char* value) { SetUploadId(value); return *this;} private: Aws::String m_uploadId; }; } // namespace Model } // namespace IoTThingsGraph } // namespace Aws