#pragma once /* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. * * This file is generated */ #include #include #include namespace Aws { namespace Iotidentity { /** * Response payload to a RegisterThing request. * */ class AWS_IOTIDENTITY_API RegisterThingResponse final { public: RegisterThingResponse() = default; RegisterThingResponse(const Crt::JsonView &doc); RegisterThingResponse &operator=(const Crt::JsonView &doc); void SerializeToObject(Crt::JsonObject &doc) const; /** * The name of the IoT thing created during provisioning. * */ Aws::Crt::Optional ThingName; /** * The device configuration defined in the template. * */ Aws::Crt::Optional> DeviceConfiguration; private: static void LoadFromObject(RegisterThingResponse &obj, const Crt::JsonView &doc); }; } // namespace Iotidentity } // namespace Aws