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

The bulk thing provisioning task ID.

*/ inline const Aws::String& GetTaskId() const{ return m_taskId; } /** *

The bulk thing provisioning task ID.

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

The bulk thing provisioning task ID.

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

The bulk thing provisioning task ID.

*/ inline void SetTaskId(const char* value) { m_taskId.assign(value); } /** *

The bulk thing provisioning task ID.

*/ inline StartThingRegistrationTaskResult& WithTaskId(const Aws::String& value) { SetTaskId(value); return *this;} /** *

The bulk thing provisioning task ID.

*/ inline StartThingRegistrationTaskResult& WithTaskId(Aws::String&& value) { SetTaskId(std::move(value)); return *this;} /** *

The bulk thing provisioning task ID.

*/ inline StartThingRegistrationTaskResult& WithTaskId(const char* value) { SetTaskId(value); return *this;} private: Aws::String m_taskId; }; } // namespace Model } // namespace IoT } // namespace Aws